From 5c5d95b1c8b03e7ba3f474b94c81d12722ba7554 Mon Sep 17 00:00:00 2001 From: may Date: Fri, 28 Feb 2025 22:41:54 +0100 Subject: [PATCH 1/2] add tuple_type to possible dynamic types --- grammar.js | 1 + test/corpus/declarations.txt | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/grammar.js b/grammar.js index f03417f8..df773d4f 100644 --- a/grammar.js +++ b/grammar.js @@ -912,6 +912,7 @@ module.exports = grammar({ $.scoped_type_identifier, $.generic_type, $.function_type, + $.tuple_type, )), ), diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index d254ba18..77195e86 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1681,6 +1681,35 @@ impl !Send for Foo {} (type_identifier) (declaration_list))) +================================================================================ +Impl dyn with parentheses +================================================================================ + +pub unsafe trait Trait {} + +unsafe impl Trait for dyn (::std::any::Any) + Send { } + +-------------------------------------------------------------------------------- + +(source_file + (trait_item + (visibility_modifier) + (type_identifier) + (declaration_list)) + (impl_item + (type_identifier) + (bounded_type + (dynamic_type + (tuple_type + (scoped_type_identifier + (scoped_identifier + (scoped_identifier + (identifier)) + (identifier)) + (type_identifier)))) + (type_identifier)) + (declaration_list))) + ================================================================================ Trait impl signature ================================================================================ From 0763165b549ac88101f77de4971248643711c548 Mon Sep 17 00:00:00 2001 From: may Date: Fri, 7 Mar 2025 02:08:51 +0100 Subject: [PATCH 2/2] chore: tree-sitter generate --- src/grammar.json | 4 + src/node-types.json | 4 + src/parser.c | 183001 +++++++++++++++++++++-------------------- 3 files changed, 91591 insertions(+), 91418 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 53e0fd72..08ee3b7e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5167,6 +5167,10 @@ { "type": "SYMBOL", "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" } ] } diff --git a/src/node-types.json b/src/node-types.json index 0ef0838c..b7bf9790 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1505,6 +1505,10 @@ "type": "scoped_type_identifier", "named": true }, + { + "type": "tuple_type", + "named": true + }, { "type": "type_identifier", "named": true diff --git a/src/parser.c b/src/parser.c index ba87a65c..32c6f19e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3785 -#define LARGE_STATE_COUNT 1054 +#define STATE_COUNT 3787 +#define LARGE_STATE_COUNT 1056 #define SYMBOL_COUNT 349 #define ALIAS_COUNT 4 #define TOKEN_COUNT 155 @@ -3996,28 +3996,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 3, - [10] = 5, + [10] = 2, [11] = 11, [12] = 11, [13] = 6, [14] = 8, - [15] = 5, + [15] = 2, [16] = 11, [17] = 6, [18] = 3, - [19] = 5, + [19] = 2, [20] = 11, [21] = 6, [22] = 3, - [23] = 5, + [23] = 2, [24] = 11, [25] = 6, [26] = 3, - [27] = 5, + [27] = 2, [28] = 11, [29] = 6, [30] = 3, - [31] = 5, + [31] = 2, [32] = 11, [33] = 6, [34] = 3, @@ -4027,32 +4027,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [38] = 38, [39] = 39, [40] = 39, - [41] = 41, - [42] = 41, + [41] = 38, + [42] = 42, [43] = 35, - [44] = 41, + [44] = 38, [45] = 39, [46] = 35, - [47] = 38, - [48] = 36, + [47] = 36, + [48] = 42, [49] = 37, [50] = 35, [51] = 39, - [52] = 41, - [53] = 41, + [52] = 38, + [53] = 38, [54] = 39, - [55] = 38, - [56] = 36, - [57] = 41, + [55] = 36, + [56] = 42, + [57] = 38, [58] = 39, - [59] = 41, + [59] = 38, [60] = 39, - [61] = 41, + [61] = 38, [62] = 39, [63] = 37, [64] = 37, - [65] = 38, - [66] = 36, + [65] = 36, + [66] = 42, [67] = 67, [68] = 68, [69] = 69, @@ -4078,8 +4078,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [89] = 89, [90] = 84, [91] = 91, - [92] = 91, - [93] = 93, + [92] = 92, + [93] = 91, [94] = 94, [95] = 95, [96] = 95, @@ -4088,8 +4088,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [99] = 97, [100] = 95, [101] = 97, - [102] = 91, - [103] = 93, + [102] = 92, + [103] = 91, [104] = 94, [105] = 105, [106] = 95, @@ -4098,8 +4098,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [109] = 85, [110] = 86, [111] = 84, - [112] = 91, - [113] = 93, + [112] = 92, + [113] = 91, [114] = 94, [115] = 87, [116] = 95, @@ -4108,16 +4108,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [119] = 88, [120] = 89, [121] = 121, - [122] = 91, - [123] = 93, + [122] = 92, + [123] = 91, [124] = 94, - [125] = 93, + [125] = 94, [126] = 95, [127] = 97, - [128] = 91, + [128] = 92, [129] = 129, - [130] = 94, - [131] = 93, + [130] = 92, + [131] = 91, [132] = 94, [133] = 84, [134] = 134, @@ -4126,11 +4126,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [137] = 137, [138] = 135, [139] = 139, - [140] = 134, + [140] = 139, [141] = 141, - [142] = 141, + [142] = 134, [143] = 143, - [144] = 139, + [144] = 143, [145] = 145, [146] = 146, [147] = 147, @@ -4143,111 +4143,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 145, + [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 158, + [161] = 161, [162] = 162, - [163] = 163, + [163] = 137, [164] = 164, [165] = 165, - [166] = 160, - [167] = 167, + [166] = 166, + [167] = 150, [168] = 168, [169] = 169, [170] = 170, [171] = 171, - [172] = 143, - [173] = 173, - [174] = 174, + [172] = 172, + [173] = 154, + [174] = 155, [175] = 175, - [176] = 173, + [176] = 176, [177] = 177, [178] = 178, - [179] = 162, - [180] = 164, + [179] = 145, + [180] = 180, [181] = 181, [182] = 182, - [183] = 183, - [184] = 184, - [185] = 171, - [186] = 175, - [187] = 153, - [188] = 168, + [183] = 178, + [184] = 161, + [185] = 185, + [186] = 156, + [187] = 148, + [188] = 149, [189] = 189, - [190] = 189, - [191] = 153, - [192] = 168, - [193] = 189, - [194] = 153, - [195] = 168, - [196] = 189, - [197] = 197, + [190] = 160, + [191] = 148, + [192] = 149, + [193] = 160, + [194] = 148, + [195] = 149, + [196] = 160, + [197] = 162, [198] = 198, [199] = 199, [200] = 200, [201] = 201, - [202] = 170, - [203] = 203, - [204] = 177, - [205] = 147, - [206] = 149, - [207] = 151, - [208] = 152, - [209] = 209, + [202] = 202, + [203] = 170, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 199, + [208] = 165, + [209] = 204, [210] = 210, - [211] = 211, - [212] = 199, - [213] = 213, - [214] = 213, + [211] = 171, + [212] = 172, + [213] = 152, + [214] = 168, [215] = 215, [216] = 216, [217] = 217, [218] = 218, - [219] = 219, - [220] = 219, - [221] = 221, - [222] = 222, - [223] = 216, - [224] = 215, - [225] = 221, - [226] = 226, - [227] = 226, - [228] = 216, + [219] = 215, + [220] = 220, + [221] = 218, + [222] = 220, + [223] = 218, + [224] = 224, + [225] = 215, + [226] = 220, + [227] = 218, + [228] = 228, [229] = 229, - [230] = 216, - [231] = 231, - [232] = 217, - [233] = 218, + [230] = 230, + [231] = 224, + [232] = 232, + [233] = 228, [234] = 234, - [235] = 231, - [236] = 231, - [237] = 229, - [238] = 229, - [239] = 239, - [240] = 240, - [241] = 239, - [242] = 240, - [243] = 231, - [244] = 234, - [245] = 216, - [246] = 219, - [247] = 234, - [248] = 229, - [249] = 219, - [250] = 231, - [251] = 226, - [252] = 229, + [235] = 235, + [236] = 236, + [237] = 230, + [238] = 232, + [239] = 234, + [240] = 224, + [241] = 234, + [242] = 232, + [243] = 216, + [244] = 217, + [245] = 218, + [246] = 220, + [247] = 224, + [248] = 235, + [249] = 236, + [250] = 215, + [251] = 215, + [252] = 220, [253] = 253, - [254] = 254, + [254] = 253, [255] = 255, - [256] = 253, + [256] = 255, [257] = 255, - [258] = 253, - [259] = 254, - [260] = 254, - [261] = 255, + [258] = 258, + [259] = 258, + [260] = 253, + [261] = 258, [262] = 262, [263] = 263, [264] = 264, @@ -4256,125 +4256,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [267] = 267, [268] = 268, [269] = 269, - [270] = 270, + [270] = 267, [271] = 271, - [272] = 272, + [272] = 262, [273] = 273, [274] = 274, - [275] = 263, + [275] = 275, [276] = 276, [277] = 277, - [278] = 278, + [278] = 269, [279] = 279, [280] = 280, [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, + [282] = 266, + [283] = 268, + [284] = 271, + [285] = 262, + [286] = 279, [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 290, - [300] = 300, - [301] = 265, - [302] = 266, - [303] = 270, - [304] = 274, - [305] = 276, - [306] = 277, - [307] = 278, - [308] = 279, - [309] = 280, - [310] = 281, - [311] = 282, - [312] = 289, - [313] = 296, + [288] = 263, + [289] = 264, + [290] = 265, + [291] = 287, + [292] = 267, + [293] = 269, + [294] = 287, + [295] = 263, + [296] = 264, + [297] = 265, + [298] = 263, + [299] = 264, + [300] = 267, + [301] = 267, + [302] = 302, + [303] = 273, + [304] = 267, + [305] = 267, + [306] = 306, + [307] = 267, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 276, + [313] = 313, [314] = 314, [315] = 315, - [316] = 316, - [317] = 300, - [318] = 300, + [316] = 269, + [317] = 310, + [318] = 318, [319] = 319, - [320] = 265, - [321] = 266, - [322] = 270, - [323] = 274, - [324] = 276, - [325] = 277, - [326] = 278, - [327] = 279, - [328] = 280, - [329] = 281, - [330] = 282, - [331] = 296, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 279, + [324] = 324, + [325] = 325, + [326] = 265, + [327] = 276, + [328] = 328, + [329] = 308, + [330] = 330, + [331] = 331, [332] = 332, - [333] = 300, - [334] = 265, - [335] = 266, - [336] = 270, - [337] = 274, - [338] = 276, - [339] = 277, - [340] = 278, - [341] = 279, - [342] = 280, - [343] = 281, - [344] = 282, - [345] = 289, - [346] = 296, - [347] = 289, + [333] = 310, + [334] = 334, + [335] = 335, + [336] = 280, + [337] = 308, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 281, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 280, + [347] = 347, [348] = 348, - [349] = 289, - [350] = 289, - [351] = 289, - [352] = 290, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 354, - [357] = 357, - [358] = 358, - [359] = 290, - [360] = 354, - [361] = 314, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 315, - [366] = 262, - [367] = 291, - [368] = 316, - [369] = 332, - [370] = 353, - [371] = 355, - [372] = 362, - [373] = 264, - [374] = 268, - [375] = 271, - [376] = 263, - [377] = 285, - [378] = 287, - [379] = 288, - [380] = 295, - [381] = 298, - [382] = 315, - [383] = 316, - [384] = 355, - [385] = 263, - [386] = 315, - [387] = 316, - [388] = 289, + [349] = 349, + [350] = 281, + [351] = 308, + [352] = 266, + [353] = 268, + [354] = 271, + [355] = 324, + [356] = 262, + [357] = 325, + [358] = 306, + [359] = 276, + [360] = 338, + [361] = 340, + [362] = 279, + [363] = 302, + [364] = 309, + [365] = 274, + [366] = 311, + [367] = 314, + [368] = 318, + [369] = 321, + [370] = 331, + [371] = 334, + [372] = 335, + [373] = 345, + [374] = 348, + [375] = 287, + [376] = 324, + [377] = 280, + [378] = 338, + [379] = 281, + [380] = 309, + [381] = 321, + [382] = 266, + [383] = 324, + [384] = 268, + [385] = 338, + [386] = 271, + [387] = 321, + [388] = 388, [389] = 389, [390] = 390, [391] = 391, @@ -4387,40 +4387,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [398] = 398, [399] = 399, [400] = 400, - [401] = 200, + [401] = 401, [402] = 402, [403] = 403, - [404] = 404, + [404] = 201, [405] = 405, [406] = 406, - [407] = 394, - [408] = 198, + [407] = 407, + [408] = 408, [409] = 409, [410] = 410, [411] = 411, [412] = 412, [413] = 413, [414] = 414, - [415] = 415, + [415] = 414, [416] = 416, [417] = 417, - [418] = 418, - [419] = 394, + [418] = 200, + [419] = 419, [420] = 420, - [421] = 421, + [421] = 414, [422] = 422, - [423] = 416, + [423] = 422, [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 425, - [429] = 429, - [430] = 429, - [431] = 429, - [432] = 426, - [433] = 427, - [434] = 426, + [429] = 426, + [430] = 430, + [431] = 425, + [432] = 427, + [433] = 430, + [434] = 430, [435] = 435, [436] = 435, [437] = 437, @@ -4428,56 +4428,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [439] = 439, [440] = 440, [441] = 439, - [442] = 442, - [443] = 442, + [442] = 440, + [443] = 443, [444] = 439, [445] = 440, [446] = 440, - [447] = 442, - [448] = 440, - [449] = 442, - [450] = 439, + [447] = 439, + [448] = 443, + [449] = 443, + [450] = 443, [451] = 451, - [452] = 451, - [453] = 453, - [454] = 451, - [455] = 451, + [452] = 452, + [453] = 452, + [454] = 452, + [455] = 452, [456] = 456, - [457] = 456, + [457] = 339, [458] = 456, - [459] = 319, + [459] = 456, [460] = 456, - [461] = 392, + [461] = 390, [462] = 462, - [463] = 389, - [464] = 390, - [465] = 391, + [463] = 462, + [464] = 391, + [465] = 393, [466] = 462, - [467] = 393, - [468] = 462, + [467] = 389, + [468] = 392, [469] = 462, - [470] = 421, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 399, - [475] = 405, - [476] = 397, - [477] = 420, - [478] = 400, - [479] = 414, - [480] = 415, - [481] = 410, - [482] = 413, - [483] = 418, - [484] = 412, - [485] = 409, - [486] = 406, - [487] = 395, - [488] = 411, - [489] = 403, - [490] = 398, - [491] = 422, + [470] = 419, + [471] = 408, + [472] = 420, + [473] = 411, + [474] = 416, + [475] = 400, + [476] = 396, + [477] = 477, + [478] = 409, + [479] = 479, + [480] = 412, + [481] = 397, + [482] = 401, + [483] = 406, + [484] = 484, + [485] = 399, + [486] = 398, + [487] = 410, + [488] = 407, + [489] = 413, + [490] = 403, + [491] = 417, [492] = 492, [493] = 492, [494] = 494, @@ -4617,7 +4617,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [628] = 628, [629] = 629, [630] = 630, - [631] = 391, + [631] = 631, [632] = 632, [633] = 633, [634] = 634, @@ -4630,23 +4630,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 393, + [644] = 644, [645] = 645, [646] = 646, - [647] = 392, + [647] = 647, [648] = 648, [649] = 389, - [650] = 390, + [650] = 650, [651] = 651, [652] = 652, - [653] = 653, + [653] = 392, [654] = 654, [655] = 655, [656] = 656, - [657] = 657, + [657] = 390, [658] = 658, - [659] = 659, - [660] = 660, + [659] = 393, + [660] = 391, [661] = 661, [662] = 662, [663] = 663, @@ -4658,25 +4658,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [669] = 669, [670] = 670, [671] = 671, - [672] = 584, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, - [676] = 664, + [676] = 676, [677] = 677, [678] = 678, - [679] = 679, - [680] = 679, + [679] = 656, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, [685] = 685, - [686] = 589, + [686] = 686, [687] = 687, [688] = 688, [689] = 689, - [690] = 690, + [690] = 552, [691] = 691, [692] = 692, [693] = 693, @@ -4684,7 +4684,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 698, + [698] = 650, [699] = 699, [700] = 700, [701] = 701, @@ -4734,7 +4734,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [745] = 745, [746] = 746, [747] = 747, - [748] = 748, + [748] = 685, [749] = 749, [750] = 750, [751] = 751, @@ -4779,271 +4779,271 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [790] = 790, [791] = 791, [792] = 792, - [793] = 792, + [793] = 793, [794] = 794, [795] = 795, - [796] = 796, - [797] = 797, - [798] = 796, - [799] = 795, + [796] = 793, + [797] = 795, + [798] = 798, + [799] = 794, [800] = 800, [801] = 801, [802] = 802, - [803] = 800, - [804] = 804, + [803] = 803, + [804] = 801, [805] = 805, - [806] = 802, + [806] = 800, [807] = 807, - [808] = 808, + [808] = 805, [809] = 809, [810] = 810, - [811] = 801, - [812] = 812, - [813] = 805, - [814] = 807, - [815] = 809, + [811] = 807, + [812] = 802, + [813] = 813, + [814] = 814, + [815] = 803, [816] = 816, [817] = 817, [818] = 818, [819] = 819, - [820] = 820, + [820] = 819, [821] = 821, - [822] = 822, + [822] = 818, [823] = 823, - [824] = 824, + [824] = 816, [825] = 825, [826] = 826, [827] = 827, - [828] = 828, - [829] = 822, + [828] = 823, + [829] = 825, [830] = 830, [831] = 831, [832] = 832, - [833] = 819, - [834] = 817, - [835] = 818, - [836] = 826, - [837] = 816, - [838] = 820, - [839] = 824, - [840] = 825, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 832, + [837] = 817, + [838] = 838, + [839] = 831, + [840] = 830, [841] = 841, - [842] = 831, - [843] = 823, - [844] = 819, - [845] = 823, - [846] = 819, - [847] = 823, - [848] = 841, + [842] = 838, + [843] = 841, + [844] = 816, + [845] = 841, + [846] = 816, + [847] = 841, + [848] = 821, [849] = 849, - [850] = 849, - [851] = 849, - [852] = 849, - [853] = 853, - [854] = 849, + [850] = 850, + [851] = 850, + [852] = 850, + [853] = 850, + [854] = 850, [855] = 855, [856] = 856, [857] = 857, [858] = 858, - [859] = 859, - [860] = 859, + [859] = 855, + [860] = 857, [861] = 861, - [862] = 857, - [863] = 863, - [864] = 863, - [865] = 859, - [866] = 855, - [867] = 867, - [868] = 868, - [869] = 867, - [870] = 859, + [862] = 862, + [863] = 858, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 855, + [868] = 858, + [869] = 869, + [870] = 866, [871] = 871, - [872] = 867, - [873] = 856, - [874] = 874, - [875] = 863, - [876] = 859, + [872] = 861, + [873] = 861, + [874] = 855, + [875] = 861, + [876] = 861, [877] = 877, - [878] = 863, - [879] = 856, - [880] = 863, + [878] = 869, + [879] = 857, + [880] = 855, [881] = 881, [882] = 882, [883] = 883, [884] = 884, - [885] = 882, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, - [889] = 884, + [889] = 889, [890] = 890, [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 891, + [895] = 882, [896] = 896, [897] = 897, - [898] = 898, + [898] = 894, [899] = 899, [900] = 900, [901] = 901, [902] = 902, [903] = 903, - [904] = 904, + [904] = 886, [905] = 905, [906] = 906, [907] = 907, [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 888, - [914] = 883, + [909] = 899, + [910] = 891, + [911] = 893, + [912] = 897, + [913] = 913, + [914] = 900, [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 882, + [919] = 905, [920] = 920, [921] = 921, - [922] = 922, - [923] = 923, - [924] = 906, - [925] = 925, - [926] = 888, - [927] = 927, + [922] = 906, + [923] = 891, + [924] = 893, + [925] = 897, + [926] = 907, + [927] = 908, [928] = 928, [929] = 929, - [930] = 907, + [930] = 930, [931] = 931, [932] = 932, [933] = 933, [934] = 934, - [935] = 882, - [936] = 887, - [937] = 884, - [938] = 894, - [939] = 891, - [940] = 940, - [941] = 941, - [942] = 908, - [943] = 911, + [935] = 935, + [936] = 936, + [937] = 882, + [938] = 901, + [939] = 894, + [940] = 899, + [941] = 913, + [942] = 900, + [943] = 943, [944] = 944, - [945] = 928, + [945] = 945, [946] = 946, [947] = 947, [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, + [949] = 886, + [950] = 920, + [951] = 906, [952] = 952, - [953] = 899, - [954] = 887, + [953] = 894, + [954] = 954, [955] = 955, - [956] = 908, - [957] = 957, - [958] = 911, - [959] = 941, - [960] = 922, - [961] = 923, - [962] = 901, - [963] = 957, - [964] = 922, - [965] = 923, - [966] = 888, - [967] = 967, - [968] = 900, - [969] = 881, - [970] = 952, - [971] = 971, - [972] = 971, + [956] = 956, + [957] = 899, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 900, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 936, + [968] = 882, + [969] = 913, + [970] = 970, + [971] = 916, + [972] = 920, [973] = 973, [974] = 974, [975] = 975, [976] = 976, - [977] = 922, - [978] = 973, - [979] = 906, - [980] = 882, - [981] = 884, - [982] = 887, - [983] = 883, - [984] = 884, - [985] = 894, - [986] = 891, - [987] = 910, - [988] = 917, - [989] = 918, - [990] = 921, - [991] = 925, - [992] = 929, - [993] = 923, - [994] = 994, - [995] = 932, - [996] = 933, - [997] = 944, - [998] = 946, - [999] = 976, + [977] = 977, + [978] = 916, + [979] = 886, + [980] = 980, + [981] = 905, + [982] = 906, + [983] = 907, + [984] = 908, + [985] = 936, + [986] = 943, + [987] = 917, + [988] = 887, + [989] = 989, + [990] = 894, + [991] = 899, + [992] = 918, + [993] = 928, + [994] = 930, + [995] = 935, + [996] = 960, + [997] = 970, + [998] = 973, + [999] = 974, [1000] = 1000, - [1001] = 908, - [1002] = 911, - [1003] = 928, - [1004] = 1004, - [1005] = 904, - [1006] = 912, - [1007] = 886, - [1008] = 907, - [1009] = 950, - [1010] = 949, - [1011] = 897, - [1012] = 898, - [1013] = 902, - [1014] = 903, - [1015] = 909, - [1016] = 1016, - [1017] = 931, - [1018] = 1018, - [1019] = 949, - [1020] = 1020, - [1021] = 1016, - [1022] = 994, - [1023] = 1004, - [1024] = 1024, - [1025] = 1025, + [1001] = 886, + [1002] = 905, + [1003] = 920, + [1004] = 906, + [1005] = 907, + [1006] = 908, + [1007] = 945, + [1008] = 948, + [1009] = 963, + [1010] = 980, + [1011] = 961, + [1012] = 958, + [1013] = 883, + [1014] = 884, + [1015] = 888, + [1016] = 890, + [1017] = 896, + [1018] = 902, + [1019] = 891, + [1020] = 893, + [1021] = 897, + [1022] = 1022, + [1023] = 929, + [1024] = 933, + [1025] = 934, [1026] = 1026, - [1027] = 890, - [1028] = 896, - [1029] = 916, - [1030] = 1024, - [1031] = 928, - [1032] = 1032, - [1033] = 967, - [1034] = 957, - [1035] = 1026, - [1036] = 1036, - [1037] = 974, - [1038] = 922, - [1039] = 1000, - [1040] = 923, - [1041] = 949, - [1042] = 975, - [1043] = 906, - [1044] = 1044, - [1045] = 907, - [1046] = 894, - [1047] = 1018, - [1048] = 883, - [1049] = 1049, - [1050] = 1050, - [1051] = 691, + [1027] = 881, + [1028] = 952, + [1029] = 954, + [1030] = 955, + [1031] = 956, + [1032] = 959, + [1033] = 1033, + [1034] = 965, + [1035] = 966, + [1036] = 916, + [1037] = 1022, + [1038] = 1026, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 892, + [1044] = 1039, + [1045] = 943, + [1046] = 1040, + [1047] = 1041, + [1048] = 1042, + [1049] = 936, + [1050] = 1033, + [1051] = 1051, [1052] = 1052, - [1053] = 1053, + [1053] = 609, [1054] = 1054, - [1055] = 691, + [1055] = 1055, [1056] = 1056, - [1057] = 1057, + [1057] = 609, [1058] = 1058, [1059] = 1059, [1060] = 1060, @@ -5051,34 +5051,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 390, - [1066] = 200, - [1067] = 393, - [1068] = 404, - [1069] = 389, - [1070] = 402, - [1071] = 392, - [1072] = 1072, - [1073] = 391, - [1074] = 198, - [1075] = 753, - [1076] = 1076, - [1077] = 1077, + [1065] = 1065, + [1066] = 1066, + [1067] = 392, + [1068] = 390, + [1069] = 393, + [1070] = 391, + [1071] = 389, + [1072] = 201, + [1073] = 1073, + [1074] = 405, + [1075] = 395, + [1076] = 200, + [1077] = 1051, [1078] = 1078, - [1079] = 1049, + [1079] = 621, [1080] = 1080, - [1081] = 694, + [1081] = 1081, [1082] = 1082, - [1083] = 514, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 1086, + [1086] = 523, [1087] = 1087, [1088] = 1088, - [1089] = 634, - [1090] = 1090, - [1091] = 724, - [1092] = 1092, + [1089] = 1089, + [1090] = 564, + [1091] = 684, + [1092] = 753, [1093] = 1093, [1094] = 1094, [1095] = 1095, @@ -5090,416 +5090,416 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1060, + [1104] = 1104, [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 435, - [1113] = 1113, - [1114] = 685, - [1115] = 1050, - [1116] = 1057, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 583, - [1121] = 585, - [1122] = 1059, + [1106] = 756, + [1107] = 532, + [1108] = 682, + [1109] = 533, + [1110] = 534, + [1111] = 535, + [1112] = 536, + [1113] = 537, + [1114] = 538, + [1115] = 686, + [1116] = 539, + [1117] = 687, + [1118] = 540, + [1119] = 541, + [1120] = 1052, + [1121] = 609, + [1122] = 542, [1123] = 1123, - [1124] = 1058, - [1125] = 1125, - [1126] = 1126, - [1127] = 1056, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, + [1124] = 688, + [1125] = 1060, + [1126] = 689, + [1127] = 1127, + [1128] = 543, + [1129] = 691, + [1130] = 544, + [1131] = 545, [1132] = 1132, - [1133] = 588, - [1134] = 319, - [1135] = 607, - [1136] = 609, - [1137] = 616, - [1138] = 629, - [1139] = 630, - [1140] = 633, - [1141] = 643, - [1142] = 646, - [1143] = 648, - [1144] = 651, - [1145] = 653, - [1146] = 663, - [1147] = 666, - [1148] = 667, - [1149] = 673, - [1150] = 674, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 699, - [1157] = 700, - [1158] = 701, - [1159] = 702, - [1160] = 704, - [1161] = 711, - [1162] = 712, - [1163] = 713, - [1164] = 714, - [1165] = 715, - [1166] = 725, - [1167] = 726, - [1168] = 727, - [1169] = 728, - [1170] = 729, - [1171] = 730, - [1172] = 731, - [1173] = 732, - [1174] = 733, - [1175] = 734, - [1176] = 735, - [1177] = 736, - [1178] = 737, - [1179] = 738, - [1180] = 739, - [1181] = 740, - [1182] = 744, - [1183] = 751, - [1184] = 763, - [1185] = 765, - [1186] = 768, - [1187] = 773, - [1188] = 777, - [1189] = 780, - [1190] = 597, - [1191] = 687, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 569, - [1197] = 570, - [1198] = 587, - [1199] = 591, - [1200] = 592, - [1201] = 593, - [1202] = 595, - [1203] = 596, - [1204] = 598, - [1205] = 599, - [1206] = 601, - [1207] = 622, - [1208] = 625, - [1209] = 626, - [1210] = 628, - [1211] = 661, - [1212] = 684, - [1213] = 689, - [1214] = 697, - [1215] = 746, - [1216] = 748, - [1217] = 750, - [1218] = 499, - [1219] = 500, - [1220] = 501, - [1221] = 512, - [1222] = 534, - [1223] = 556, - [1224] = 561, - [1225] = 562, - [1226] = 563, - [1227] = 564, - [1228] = 565, - [1229] = 566, - [1230] = 567, - [1231] = 568, - [1232] = 571, - [1233] = 572, - [1234] = 573, - [1235] = 574, - [1236] = 575, - [1237] = 576, - [1238] = 577, - [1239] = 578, - [1240] = 579, - [1241] = 580, - [1242] = 581, - [1243] = 582, - [1244] = 590, - [1245] = 594, - [1246] = 1246, - [1247] = 1247, - [1248] = 600, - [1249] = 602, - [1250] = 603, - [1251] = 604, - [1252] = 605, - [1253] = 606, - [1254] = 608, - [1255] = 610, - [1256] = 611, - [1257] = 612, - [1258] = 613, - [1259] = 614, - [1260] = 615, - [1261] = 617, - [1262] = 618, - [1263] = 619, - [1264] = 620, - [1265] = 621, - [1266] = 623, - [1267] = 624, - [1268] = 632, - [1269] = 635, - [1270] = 636, - [1271] = 637, - [1272] = 781, - [1273] = 639, - [1274] = 640, - [1275] = 641, - [1276] = 1276, - [1277] = 645, - [1278] = 652, - [1279] = 654, - [1280] = 494, - [1281] = 656, - [1282] = 657, - [1283] = 658, - [1284] = 659, - [1285] = 660, - [1286] = 662, - [1287] = 665, - [1288] = 668, - [1289] = 669, - [1290] = 670, - [1291] = 675, - [1292] = 677, - [1293] = 678, - [1294] = 681, - [1295] = 682, - [1296] = 683, - [1297] = 690, - [1298] = 692, + [1133] = 1133, + [1134] = 546, + [1135] = 547, + [1136] = 548, + [1137] = 549, + [1138] = 550, + [1139] = 551, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 609, + [1144] = 692, + [1145] = 553, + [1146] = 693, + [1147] = 554, + [1148] = 555, + [1149] = 556, + [1150] = 557, + [1151] = 558, + [1152] = 559, + [1153] = 694, + [1154] = 695, + [1155] = 655, + [1156] = 678, + [1157] = 560, + [1158] = 561, + [1159] = 696, + [1160] = 562, + [1161] = 1161, + [1162] = 697, + [1163] = 1063, + [1164] = 699, + [1165] = 700, + [1166] = 563, + [1167] = 701, + [1168] = 763, + [1169] = 1169, + [1170] = 702, + [1171] = 1169, + [1172] = 565, + [1173] = 703, + [1174] = 566, + [1175] = 646, + [1176] = 704, + [1177] = 705, + [1178] = 567, + [1179] = 568, + [1180] = 707, + [1181] = 708, + [1182] = 569, + [1183] = 570, + [1184] = 571, + [1185] = 709, + [1186] = 572, + [1187] = 573, + [1188] = 574, + [1189] = 575, + [1190] = 576, + [1191] = 577, + [1192] = 578, + [1193] = 710, + [1194] = 711, + [1195] = 579, + [1196] = 1059, + [1197] = 712, + [1198] = 713, + [1199] = 580, + [1200] = 714, + [1201] = 581, + [1202] = 582, + [1203] = 1203, + [1204] = 715, + [1205] = 1061, + [1206] = 1206, + [1207] = 583, + [1208] = 1208, + [1209] = 584, + [1210] = 585, + [1211] = 586, + [1212] = 587, + [1213] = 588, + [1214] = 716, + [1215] = 717, + [1216] = 718, + [1217] = 589, + [1218] = 722, + [1219] = 1058, + [1220] = 590, + [1221] = 1221, + [1222] = 591, + [1223] = 1223, + [1224] = 592, + [1225] = 593, + [1226] = 1226, + [1227] = 594, + [1228] = 725, + [1229] = 1229, + [1230] = 595, + [1231] = 596, + [1232] = 1232, + [1233] = 597, + [1234] = 1234, + [1235] = 651, + [1236] = 598, + [1237] = 599, + [1238] = 600, + [1239] = 601, + [1240] = 602, + [1241] = 1063, + [1242] = 339, + [1243] = 1243, + [1244] = 603, + [1245] = 604, + [1246] = 1169, + [1247] = 658, + [1248] = 605, + [1249] = 662, + [1250] = 668, + [1251] = 606, + [1252] = 681, + [1253] = 607, + [1254] = 727, + [1255] = 683, + [1256] = 608, + [1257] = 728, + [1258] = 1258, + [1259] = 719, + [1260] = 720, + [1261] = 648, + [1262] = 729, + [1263] = 721, + [1264] = 494, + [1265] = 764, + [1266] = 730, + [1267] = 731, + [1268] = 765, + [1269] = 724, + [1270] = 732, + [1271] = 733, + [1272] = 734, + [1273] = 766, + [1274] = 735, + [1275] = 767, + [1276] = 736, + [1277] = 1277, + [1278] = 761, + [1279] = 1279, + [1280] = 1280, + [1281] = 726, + [1282] = 768, + [1283] = 1283, + [1284] = 745, + [1285] = 750, + [1286] = 752, + [1287] = 498, + [1288] = 499, + [1289] = 1289, + [1290] = 769, + [1291] = 1291, + [1292] = 770, + [1293] = 435, + [1294] = 771, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, [1299] = 1299, [1300] = 1300, - [1301] = 695, - [1302] = 696, - [1303] = 698, - [1304] = 703, - [1305] = 705, - [1306] = 706, - [1307] = 707, - [1308] = 708, - [1309] = 709, - [1310] = 710, - [1311] = 716, - [1312] = 717, - [1313] = 718, - [1314] = 719, - [1315] = 721, - [1316] = 722, - [1317] = 723, - [1318] = 741, - [1319] = 742, - [1320] = 743, - [1321] = 745, - [1322] = 749, - [1323] = 752, - [1324] = 754, - [1325] = 755, - [1326] = 756, - [1327] = 757, - [1328] = 758, - [1329] = 759, - [1330] = 760, - [1331] = 761, - [1332] = 762, - [1333] = 764, - [1334] = 766, - [1335] = 767, - [1336] = 769, - [1337] = 770, - [1338] = 771, - [1339] = 772, - [1340] = 774, - [1341] = 775, - [1342] = 776, - [1343] = 778, - [1344] = 779, - [1345] = 655, - [1346] = 638, - [1347] = 671, - [1348] = 495, - [1349] = 496, - [1350] = 497, - [1351] = 498, - [1352] = 1352, - [1353] = 1353, - [1354] = 502, - [1355] = 503, - [1356] = 504, - [1357] = 505, - [1358] = 506, - [1359] = 507, - [1360] = 508, - [1361] = 509, - [1362] = 510, - [1363] = 511, - [1364] = 513, - [1365] = 515, - [1366] = 516, - [1367] = 517, - [1368] = 518, - [1369] = 519, - [1370] = 520, - [1371] = 521, - [1372] = 522, - [1373] = 523, - [1374] = 524, - [1375] = 525, - [1376] = 526, - [1377] = 527, - [1378] = 528, - [1379] = 529, - [1380] = 530, - [1381] = 531, - [1382] = 532, - [1383] = 533, - [1384] = 535, - [1385] = 536, - [1386] = 537, - [1387] = 538, - [1388] = 539, - [1389] = 540, - [1390] = 541, - [1391] = 542, - [1392] = 543, - [1393] = 544, - [1394] = 545, - [1395] = 546, - [1396] = 547, - [1397] = 548, - [1398] = 549, - [1399] = 550, - [1400] = 551, - [1401] = 552, - [1402] = 553, - [1403] = 554, - [1404] = 555, - [1405] = 557, - [1406] = 558, - [1407] = 559, - [1408] = 560, - [1409] = 1409, - [1410] = 691, - [1411] = 569, - [1412] = 1412, - [1413] = 1413, - [1414] = 691, - [1415] = 691, - [1416] = 1416, - [1417] = 1060, - [1418] = 1418, - [1419] = 642, - [1420] = 1060, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 147, - [1425] = 1425, + [1301] = 772, + [1302] = 773, + [1303] = 610, + [1304] = 611, + [1305] = 1305, + [1306] = 612, + [1307] = 613, + [1308] = 738, + [1309] = 739, + [1310] = 614, + [1311] = 774, + [1312] = 1312, + [1313] = 740, + [1314] = 775, + [1315] = 741, + [1316] = 776, + [1317] = 742, + [1318] = 743, + [1319] = 615, + [1320] = 1320, + [1321] = 744, + [1322] = 777, + [1323] = 746, + [1324] = 778, + [1325] = 779, + [1326] = 747, + [1327] = 780, + [1328] = 751, + [1329] = 1329, + [1330] = 495, + [1331] = 647, + [1332] = 616, + [1333] = 496, + [1334] = 497, + [1335] = 1335, + [1336] = 1336, + [1337] = 500, + [1338] = 617, + [1339] = 618, + [1340] = 619, + [1341] = 501, + [1342] = 652, + [1343] = 502, + [1344] = 654, + [1345] = 1345, + [1346] = 503, + [1347] = 661, + [1348] = 504, + [1349] = 505, + [1350] = 663, + [1351] = 506, + [1352] = 507, + [1353] = 508, + [1354] = 622, + [1355] = 623, + [1356] = 509, + [1357] = 510, + [1358] = 511, + [1359] = 512, + [1360] = 513, + [1361] = 609, + [1362] = 514, + [1363] = 664, + [1364] = 515, + [1365] = 516, + [1366] = 517, + [1367] = 518, + [1368] = 652, + [1369] = 665, + [1370] = 519, + [1371] = 624, + [1372] = 520, + [1373] = 521, + [1374] = 522, + [1375] = 762, + [1376] = 666, + [1377] = 524, + [1378] = 667, + [1379] = 531, + [1380] = 625, + [1381] = 525, + [1382] = 626, + [1383] = 627, + [1384] = 669, + [1385] = 526, + [1386] = 670, + [1387] = 628, + [1388] = 527, + [1389] = 528, + [1390] = 529, + [1391] = 629, + [1392] = 671, + [1393] = 630, + [1394] = 530, + [1395] = 631, + [1396] = 632, + [1397] = 781, + [1398] = 672, + [1399] = 633, + [1400] = 634, + [1401] = 1401, + [1402] = 635, + [1403] = 673, + [1404] = 636, + [1405] = 637, + [1406] = 638, + [1407] = 640, + [1408] = 674, + [1409] = 641, + [1410] = 642, + [1411] = 643, + [1412] = 644, + [1413] = 645, + [1414] = 675, + [1415] = 676, + [1416] = 754, + [1417] = 1417, + [1418] = 755, + [1419] = 1169, + [1420] = 677, + [1421] = 757, + [1422] = 758, + [1423] = 759, + [1424] = 760, + [1425] = 737, [1426] = 1426, [1427] = 1427, [1428] = 1428, - [1429] = 198, + [1429] = 1429, [1430] = 1430, - [1431] = 1431, + [1431] = 172, [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 415, + [1436] = 1436, [1437] = 1437, [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 390, + [1441] = 1441, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1445, - [1446] = 391, + [1445] = 389, + [1446] = 1446, [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 421, + [1448] = 420, + [1449] = 406, + [1450] = 407, + [1451] = 408, [1452] = 410, [1453] = 411, - [1454] = 412, + [1454] = 392, [1455] = 1455, [1456] = 1456, - [1457] = 409, + [1457] = 1457, [1458] = 1458, [1459] = 1459, - [1460] = 397, - [1461] = 1461, - [1462] = 1462, + [1460] = 419, + [1461] = 395, + [1462] = 397, [1463] = 1463, - [1464] = 398, - [1465] = 1465, - [1466] = 1466, - [1467] = 200, - [1468] = 393, + [1464] = 399, + [1465] = 403, + [1466] = 405, + [1467] = 390, + [1468] = 1468, [1469] = 1469, - [1470] = 418, - [1471] = 406, + [1470] = 1470, + [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 395, - [1479] = 413, + [1474] = 200, + [1475] = 416, + [1476] = 398, + [1477] = 400, + [1478] = 1478, + [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 152, + [1484] = 1484, [1485] = 1485, - [1486] = 399, - [1487] = 404, - [1488] = 1488, - [1489] = 405, + [1486] = 170, + [1487] = 201, + [1488] = 409, + [1489] = 412, [1490] = 1490, - [1491] = 170, + [1491] = 413, [1492] = 1492, - [1493] = 420, + [1493] = 1493, [1494] = 1494, - [1495] = 1495, - [1496] = 400, - [1497] = 402, - [1498] = 389, - [1499] = 403, + [1495] = 165, + [1496] = 393, + [1497] = 417, + [1498] = 1498, + [1499] = 1499, [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, [1504] = 1504, - [1505] = 1505, + [1505] = 396, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 392, + [1509] = 391, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 149, + [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, @@ -5507,9 +5507,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1521, + [1521] = 401, [1522] = 1522, - [1523] = 1523, + [1523] = 171, [1524] = 1524, [1525] = 1525, [1526] = 1526, @@ -5517,30 +5517,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1528] = 1528, [1529] = 1529, [1530] = 1530, - [1531] = 1531, + [1531] = 1063, [1532] = 1532, - [1533] = 151, + [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 422, + [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 414, + [1539] = 1539, [1540] = 1540, - [1541] = 1540, - [1542] = 1060, - [1543] = 1060, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, [1544] = 1544, - [1545] = 1545, - [1546] = 1540, - [1547] = 1540, + [1545] = 168, + [1546] = 1063, + [1547] = 1547, [1548] = 1548, - [1549] = 1549, + [1549] = 1063, [1550] = 1550, [1551] = 1551, - [1552] = 1062, - [1553] = 1063, - [1554] = 1061, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, @@ -5550,619 +5550,619 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1100, - [1565] = 1565, - [1566] = 1566, + [1564] = 1564, + [1565] = 1100, + [1566] = 1064, [1567] = 1567, - [1568] = 1568, - [1569] = 1566, - [1570] = 1570, - [1571] = 1571, + [1568] = 1062, + [1569] = 1065, + [1570] = 1550, + [1571] = 1552, [1572] = 1572, [1573] = 1573, [1574] = 1574, - [1575] = 1565, + [1575] = 1575, [1576] = 1576, - [1577] = 1570, + [1577] = 1574, [1578] = 1578, [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1100, - [1583] = 1100, - [1584] = 1072, - [1585] = 1585, - [1586] = 1080, - [1587] = 1105, - [1588] = 1107, - [1589] = 1531, - [1590] = 1276, - [1591] = 1084, - [1592] = 1105, - [1593] = 1276, - [1594] = 1078, - [1595] = 1508, - [1596] = 1082, - [1597] = 1087, - [1598] = 1085, - [1599] = 1110, - [1600] = 1086, - [1601] = 1531, - [1602] = 1110, - [1603] = 1090, - [1604] = 1107, - [1605] = 1605, - [1606] = 1409, - [1607] = 1605, - [1608] = 1409, - [1609] = 1430, - [1610] = 1610, - [1611] = 1246, - [1612] = 1299, - [1613] = 1352, - [1614] = 1614, - [1615] = 319, - [1616] = 1488, - [1617] = 1092, - [1618] = 1094, - [1619] = 1619, - [1620] = 1531, - [1621] = 1192, - [1622] = 1610, - [1623] = 1508, - [1624] = 1614, - [1625] = 1619, - [1626] = 1610, - [1627] = 1614, - [1628] = 1610, - [1629] = 1614, - [1630] = 1545, - [1631] = 1544, - [1632] = 1093, - [1633] = 1488, - [1634] = 1605, - [1635] = 1097, - [1636] = 1430, - [1637] = 1637, - [1638] = 1605, - [1639] = 1637, - [1640] = 1418, - [1641] = 1300, - [1642] = 1109, - [1643] = 1123, - [1644] = 1193, - [1645] = 1416, - [1646] = 1125, - [1647] = 1571, - [1648] = 1573, - [1649] = 1555, - [1650] = 1563, - [1651] = 1353, - [1652] = 1108, - [1653] = 1545, - [1654] = 1654, - [1655] = 1655, - [1656] = 1656, - [1657] = 1117, + [1582] = 1582, + [1583] = 1583, + [1584] = 1100, + [1585] = 1100, + [1586] = 1586, + [1587] = 1066, + [1588] = 1283, + [1589] = 1123, + [1590] = 1081, + [1591] = 1088, + [1592] = 1084, + [1593] = 1283, + [1594] = 1087, + [1595] = 1280, + [1596] = 1401, + [1597] = 1401, + [1598] = 1089, + [1599] = 1526, + [1600] = 1540, + [1601] = 1540, + [1602] = 1123, + [1603] = 1280, + [1604] = 1093, + [1605] = 1078, + [1606] = 1082, + [1607] = 1607, + [1608] = 1105, + [1609] = 1097, + [1610] = 1433, + [1611] = 1099, + [1612] = 1439, + [1613] = 1279, + [1614] = 1540, + [1615] = 1607, + [1616] = 1229, + [1617] = 1335, + [1618] = 1141, + [1619] = 1607, + [1620] = 1620, + [1621] = 339, + [1622] = 1526, + [1623] = 1623, + [1624] = 1439, + [1625] = 1620, + [1626] = 1626, + [1627] = 1627, + [1628] = 1623, + [1629] = 1627, + [1630] = 1417, + [1631] = 1417, + [1632] = 1627, + [1633] = 1623, + [1634] = 1627, + [1635] = 1623, + [1636] = 1548, + [1637] = 1547, + [1638] = 1607, + [1639] = 1095, + [1640] = 1433, + [1641] = 1626, + [1642] = 392, + [1643] = 1223, + [1644] = 1562, + [1645] = 1243, + [1646] = 1572, + [1647] = 1336, + [1648] = 1226, + [1649] = 1142, + [1650] = 1161, + [1651] = 1575, + [1652] = 1232, + [1653] = 1234, + [1654] = 1547, + [1655] = 1583, + [1656] = 1551, + [1657] = 389, [1658] = 1658, - [1659] = 1126, - [1660] = 1194, - [1661] = 1247, - [1662] = 1128, - [1663] = 1580, - [1664] = 1658, - [1665] = 1568, - [1666] = 1129, - [1667] = 1549, - [1668] = 1579, - [1669] = 1130, - [1670] = 1548, - [1671] = 1131, - [1672] = 1560, - [1673] = 1132, - [1674] = 1655, - [1675] = 1574, - [1676] = 1118, - [1677] = 1677, + [1659] = 390, + [1660] = 393, + [1661] = 391, + [1662] = 1300, + [1663] = 1320, + [1664] = 1555, + [1665] = 1665, + [1666] = 1203, + [1667] = 1206, + [1668] = 1557, + [1669] = 1559, + [1670] = 1329, + [1671] = 1579, + [1672] = 1578, + [1673] = 1556, + [1674] = 1674, + [1675] = 1675, + [1676] = 1208, + [1677] = 1658, [1678] = 1678, - [1679] = 1119, - [1680] = 1551, - [1681] = 1654, - [1682] = 1576, - [1683] = 391, - [1684] = 1557, - [1685] = 393, - [1686] = 392, - [1687] = 1558, - [1688] = 1572, - [1689] = 1544, - [1690] = 389, - [1691] = 390, - [1692] = 1151, - [1693] = 1578, - [1694] = 1152, - [1695] = 1195, - [1696] = 1153, - [1697] = 1154, - [1698] = 1155, - [1699] = 1567, - [1700] = 1550, - [1701] = 1701, - [1702] = 1448, - [1703] = 1524, - [1704] = 1449, - [1705] = 1705, - [1706] = 1473, + [1679] = 1679, + [1680] = 1560, + [1681] = 1289, + [1682] = 1291, + [1683] = 1675, + [1684] = 1297, + [1685] = 1298, + [1686] = 1563, + [1687] = 1299, + [1688] = 1221, + [1689] = 1296, + [1690] = 1580, + [1691] = 1312, + [1692] = 1581, + [1693] = 1127, + [1694] = 1582, + [1695] = 1674, + [1696] = 1132, + [1697] = 1133, + [1698] = 1548, + [1699] = 1576, + [1700] = 1277, + [1701] = 1561, + [1702] = 1564, + [1703] = 1501, + [1704] = 1542, + [1705] = 1543, + [1706] = 1706, [1707] = 1707, - [1708] = 1574, - [1709] = 1485, - [1710] = 1537, - [1711] = 1515, - [1712] = 1480, - [1713] = 1474, - [1714] = 1475, - [1715] = 1056, - [1716] = 1490, - [1717] = 1481, - [1718] = 1422, - [1719] = 1434, - [1720] = 1483, - [1721] = 1492, + [1708] = 1463, + [1709] = 1432, + [1710] = 1710, + [1711] = 1437, + [1712] = 1494, + [1713] = 1434, + [1714] = 1519, + [1715] = 1435, + [1716] = 1528, + [1717] = 1530, + [1718] = 1718, + [1719] = 1446, + [1720] = 1533, + [1721] = 1534, [1722] = 1447, - [1723] = 1568, - [1724] = 1572, - [1725] = 1495, + [1723] = 1436, + [1724] = 1429, + [1725] = 1563, [1726] = 1726, - [1727] = 1576, - [1728] = 1578, - [1729] = 1579, - [1730] = 1580, - [1731] = 1549, - [1732] = 1550, - [1733] = 1548, - [1734] = 1551, - [1735] = 1557, - [1736] = 1558, - [1737] = 1567, - [1738] = 1738, - [1739] = 1739, - [1740] = 1516, - [1741] = 1520, - [1742] = 1571, - [1743] = 1423, - [1744] = 1744, - [1745] = 1426, - [1746] = 1512, - [1747] = 1433, - [1748] = 1560, - [1749] = 1455, - [1750] = 1573, - [1751] = 1458, - [1752] = 1427, - [1753] = 1459, - [1754] = 1431, - [1755] = 1461, - [1756] = 1462, - [1757] = 1428, - [1758] = 1463, - [1759] = 1759, - [1760] = 1432, - [1761] = 1465, - [1762] = 1435, + [1727] = 1727, + [1728] = 1438, + [1729] = 1729, + [1730] = 1440, + [1731] = 1455, + [1732] = 1442, + [1733] = 1456, + [1734] = 1058, + [1735] = 1443, + [1736] = 1557, + [1737] = 1458, + [1738] = 1444, + [1739] = 1459, + [1740] = 1740, + [1741] = 1576, + [1742] = 1559, + [1743] = 1581, + [1744] = 1441, + [1745] = 1560, + [1746] = 1561, + [1747] = 1562, + [1748] = 1572, + [1749] = 1575, + [1750] = 1578, + [1751] = 1580, + [1752] = 1582, + [1753] = 1583, + [1754] = 1551, + [1755] = 1555, + [1756] = 1468, + [1757] = 1469, + [1758] = 1472, + [1759] = 1492, + [1760] = 1473, + [1761] = 1564, + [1762] = 1493, [1763] = 1763, - [1764] = 1438, - [1765] = 1500, - [1766] = 1501, - [1767] = 1502, - [1768] = 1503, - [1769] = 1504, - [1770] = 1505, - [1771] = 1506, - [1772] = 1772, - [1773] = 1442, - [1774] = 1443, - [1775] = 1444, - [1776] = 1555, - [1777] = 435, - [1778] = 410, - [1779] = 412, - [1780] = 409, - [1781] = 397, - [1782] = 398, - [1783] = 1563, - [1784] = 1574, - [1785] = 1785, - [1786] = 1476, - [1787] = 399, - [1788] = 1568, - [1789] = 405, - [1790] = 1425, - [1791] = 420, - [1792] = 1572, - [1793] = 400, - [1794] = 1576, - [1795] = 1578, - [1796] = 1579, - [1797] = 1580, - [1798] = 1549, - [1799] = 1550, - [1800] = 1548, - [1801] = 1551, - [1802] = 1557, - [1803] = 1558, - [1804] = 1567, - [1805] = 1526, - [1806] = 1421, - [1807] = 414, - [1808] = 415, - [1809] = 1560, - [1810] = 421, - [1811] = 1456, - [1812] = 1507, - [1813] = 418, - [1814] = 406, - [1815] = 395, - [1816] = 403, - [1817] = 422, - [1818] = 413, - [1819] = 170, - [1820] = 147, - [1821] = 411, - [1822] = 149, - [1823] = 1514, - [1824] = 1574, - [1825] = 151, - [1826] = 404, - [1827] = 1827, - [1828] = 1572, - [1829] = 152, - [1830] = 402, - [1831] = 1560, - [1832] = 1518, - [1833] = 1523, - [1834] = 1525, - [1835] = 198, - [1836] = 200, - [1837] = 1530, - [1838] = 1437, - [1839] = 1494, - [1840] = 1532, - [1841] = 1534, - [1842] = 1535, - [1843] = 1827, - [1844] = 1439, - [1845] = 1772, - [1846] = 1440, - [1847] = 1445, + [1764] = 1556, + [1765] = 1478, + [1766] = 1480, + [1767] = 1481, + [1768] = 1768, + [1769] = 1507, + [1770] = 1482, + [1771] = 1483, + [1772] = 1484, + [1773] = 1513, + [1774] = 1514, + [1775] = 1515, + [1776] = 1485, + [1777] = 1579, + [1778] = 1498, + [1779] = 1499, + [1780] = 1518, + [1781] = 1500, + [1782] = 1502, + [1783] = 1503, + [1784] = 1504, + [1785] = 1520, + [1786] = 1522, + [1787] = 1510, + [1788] = 1511, + [1789] = 1512, + [1790] = 1490, + [1791] = 1426, + [1792] = 435, + [1793] = 420, + [1794] = 407, + [1795] = 408, + [1796] = 1796, + [1797] = 410, + [1798] = 411, + [1799] = 1506, + [1800] = 1563, + [1801] = 1457, + [1802] = 419, + [1803] = 1576, + [1804] = 397, + [1805] = 1508, + [1806] = 399, + [1807] = 1581, + [1808] = 403, + [1809] = 1809, + [1810] = 1560, + [1811] = 1561, + [1812] = 1562, + [1813] = 1572, + [1814] = 1575, + [1815] = 1578, + [1816] = 1580, + [1817] = 1582, + [1818] = 1583, + [1819] = 1819, + [1820] = 1555, + [1821] = 1470, + [1822] = 1471, + [1823] = 416, + [1824] = 398, + [1825] = 1556, + [1826] = 400, + [1827] = 1479, + [1828] = 1529, + [1829] = 409, + [1830] = 412, + [1831] = 413, + [1832] = 417, + [1833] = 396, + [1834] = 401, + [1835] = 165, + [1836] = 168, + [1837] = 406, + [1838] = 170, + [1839] = 1563, + [1840] = 171, + [1841] = 395, + [1842] = 1581, + [1843] = 172, + [1844] = 405, + [1845] = 1556, + [1846] = 200, + [1847] = 201, [1848] = 1848, - [1849] = 1744, - [1850] = 1538, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1510, - [1857] = 1785, - [1858] = 1511, + [1849] = 1516, + [1850] = 1850, + [1851] = 1517, + [1852] = 1428, + [1853] = 1729, + [1854] = 1809, + [1855] = 1524, + [1856] = 1532, + [1857] = 1706, + [1858] = 1525, [1859] = 1859, [1860] = 1860, - [1861] = 1861, + [1861] = 1726, [1862] = 1862, - [1863] = 1738, - [1864] = 1862, - [1865] = 1865, - [1866] = 1772, - [1867] = 1853, - [1868] = 1571, - [1869] = 1573, - [1870] = 1744, - [1871] = 1555, - [1872] = 1563, - [1873] = 1852, - [1874] = 1859, - [1875] = 1701, - [1876] = 1876, - [1877] = 1859, - [1878] = 1862, - [1879] = 1772, - [1880] = 1744, - [1881] = 1852, - [1882] = 1517, - [1883] = 1860, - [1884] = 1859, - [1885] = 1862, - [1886] = 1450, - [1887] = 1772, - [1888] = 1852, - [1889] = 1859, - [1890] = 1862, - [1891] = 1772, - [1892] = 1852, - [1893] = 1859, - [1894] = 1862, - [1895] = 1772, - [1896] = 1852, - [1897] = 1859, - [1898] = 1862, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1519, - [1903] = 1521, - [1904] = 1522, - [1905] = 1466, - [1906] = 1527, - [1907] = 1907, - [1908] = 1528, - [1909] = 1529, - [1910] = 1852, - [1911] = 1469, - [1912] = 1865, - [1913] = 1472, - [1914] = 1914, - [1915] = 1861, - [1916] = 1477, + [1863] = 1863, + [1864] = 1527, + [1865] = 1859, + [1866] = 1535, + [1867] = 1848, + [1868] = 1536, + [1869] = 1707, + [1870] = 1710, + [1871] = 1871, + [1872] = 1796, + [1873] = 1871, + [1874] = 1874, + [1875] = 1875, + [1876] = 1537, + [1877] = 1538, + [1878] = 1878, + [1879] = 1874, + [1880] = 1539, + [1881] = 1809, + [1882] = 1557, + [1883] = 1559, + [1884] = 1706, + [1885] = 1564, + [1886] = 1579, + [1887] = 1726, + [1888] = 1707, + [1889] = 1871, + [1890] = 1809, + [1891] = 1706, + [1892] = 1726, + [1893] = 1707, + [1894] = 1871, + [1895] = 1809, + [1896] = 1726, + [1897] = 1707, + [1898] = 1871, + [1899] = 1809, + [1900] = 1726, + [1901] = 1707, + [1902] = 1871, + [1903] = 1809, + [1904] = 1726, + [1905] = 1905, + [1906] = 1707, + [1907] = 1871, + [1908] = 1541, + [1909] = 1909, + [1910] = 1875, + [1911] = 1911, + [1912] = 1544, + [1913] = 1913, + [1914] = 1427, + [1915] = 1878, + [1916] = 1916, [1917] = 1917, - [1918] = 1918, + [1918] = 1551, [1919] = 1919, - [1920] = 1917, - [1921] = 1921, + [1920] = 1920, + [1921] = 1920, [1922] = 1922, - [1923] = 1763, + [1923] = 1923, [1924] = 1924, [1925] = 1925, [1926] = 1926, - [1927] = 1707, + [1927] = 1927, [1928] = 1928, - [1929] = 1929, - [1930] = 1919, + [1929] = 1926, + [1930] = 1930, [1931] = 1931, [1932] = 1932, - [1933] = 1928, - [1934] = 1907, + [1933] = 1768, + [1934] = 1922, [1935] = 1935, - [1936] = 1936, + [1936] = 1927, [1937] = 1937, - [1938] = 1931, - [1939] = 1939, - [1940] = 1940, - [1941] = 1931, - [1942] = 1937, + [1938] = 1938, + [1939] = 1930, + [1940] = 1763, + [1941] = 1941, + [1942] = 1942, [1943] = 1943, [1944] = 1924, - [1945] = 1945, - [1946] = 1922, - [1947] = 1932, - [1948] = 1925, - [1949] = 1949, - [1950] = 1926, - [1951] = 1921, - [1952] = 1918, - [1953] = 1936, - [1954] = 1954, - [1955] = 1955, + [1945] = 1727, + [1946] = 1935, + [1947] = 1938, + [1948] = 1948, + [1949] = 1941, + [1950] = 1942, + [1951] = 1925, + [1952] = 1932, + [1953] = 1953, + [1954] = 1928, + [1955] = 1922, [1956] = 1956, - [1957] = 1955, + [1957] = 1956, [1958] = 1958, - [1959] = 1954, - [1960] = 1958, - [1961] = 1956, - [1962] = 1962, - [1963] = 1963, + [1959] = 1959, + [1960] = 1959, + [1961] = 1961, + [1962] = 1961, + [1963] = 1958, [1964] = 1964, [1965] = 1965, [1966] = 1966, - [1967] = 1965, - [1968] = 1966, - [1969] = 1966, - [1970] = 1965, - [1971] = 1965, - [1972] = 1965, - [1973] = 1965, - [1974] = 1974, - [1975] = 1974, - [1976] = 149, - [1977] = 152, - [1978] = 1078, - [1979] = 1082, - [1980] = 1084, - [1981] = 1080, - [1982] = 1982, - [1983] = 1063, - [1984] = 1192, - [1985] = 1352, - [1986] = 1246, - [1987] = 1080, - [1988] = 1084, - [1989] = 1082, + [1967] = 1967, + [1968] = 1968, + [1969] = 1967, + [1970] = 1967, + [1971] = 1968, + [1972] = 1967, + [1973] = 1967, + [1974] = 1967, + [1975] = 1968, + [1976] = 1976, + [1977] = 1976, + [1978] = 172, + [1979] = 170, + [1980] = 1082, + [1981] = 1081, + [1982] = 1078, + [1983] = 1088, + [1984] = 1984, + [1985] = 1279, + [1986] = 1229, + [1987] = 1082, + [1988] = 1335, + [1989] = 1065, [1990] = 1078, - [1991] = 1061, - [1992] = 1299, - [1993] = 1062, - [1994] = 1994, - [1995] = 1093, - [1996] = 1097, - [1997] = 1092, - [1998] = 1151, - [1999] = 1072, - [2000] = 1094, - [2001] = 2001, - [2002] = 2002, - [2003] = 1123, - [2004] = 2004, - [2005] = 2002, - [2006] = 1125, - [2007] = 1085, - [2008] = 1126, - [2009] = 1087, - [2010] = 1086, - [2011] = 1090, - [2012] = 1247, - [2013] = 1562, - [2014] = 2014, - [2015] = 1130, - [2016] = 1300, - [2017] = 2014, - [2018] = 200, - [2019] = 1194, - [2020] = 404, - [2021] = 1117, - [2022] = 402, - [2023] = 1353, - [2024] = 1119, - [2025] = 1193, - [2026] = 1129, - [2027] = 1152, - [2028] = 2004, - [2029] = 2014, - [2030] = 198, - [2031] = 1118, - [2032] = 2032, - [2033] = 1462, - [2034] = 1442, - [2035] = 1443, - [2036] = 1444, - [2037] = 1500, - [2038] = 1501, - [2039] = 1559, - [2040] = 1556, - [2041] = 2041, - [2042] = 1516, - [2043] = 1561, - [2044] = 1502, - [2045] = 1503, - [2046] = 1504, - [2047] = 1505, - [2048] = 1449, - [2049] = 2004, - [2050] = 1474, - [2051] = 1423, - [2052] = 1475, - [2053] = 1476, - [2054] = 1426, - [2055] = 2055, - [2056] = 1481, - [2057] = 1520, - [2058] = 1526, - [2059] = 1421, - [2060] = 1483, - [2061] = 1455, - [2062] = 1456, - [2063] = 1458, - [2064] = 1459, - [2065] = 1461, - [2066] = 1507, - [2067] = 1463, - [2068] = 1465, - [2069] = 1448, - [2070] = 1506, - [2071] = 1132, - [2072] = 147, + [1991] = 1081, + [1992] = 1062, + [1993] = 1088, + [1994] = 1064, + [1995] = 1141, + [1996] = 1289, + [1997] = 1095, + [1998] = 1099, + [1999] = 1999, + [2000] = 1105, + [2001] = 1097, + [2002] = 1066, + [2003] = 1084, + [2004] = 1089, + [2005] = 2005, + [2006] = 1203, + [2007] = 1093, + [2008] = 1208, + [2009] = 2009, + [2010] = 2010, + [2011] = 1087, + [2012] = 1206, + [2013] = 2009, + [2014] = 1336, + [2015] = 395, + [2016] = 1133, + [2017] = 2017, + [2018] = 1567, + [2019] = 201, + [2020] = 1226, + [2021] = 1142, + [2022] = 2022, + [2023] = 1132, + [2024] = 1312, + [2025] = 1291, + [2026] = 1127, + [2027] = 405, + [2028] = 200, + [2029] = 1223, + [2030] = 1296, + [2031] = 1243, + [2032] = 2022, + [2033] = 2010, + [2034] = 2022, + [2035] = 1457, + [2036] = 1468, + [2037] = 1501, + [2038] = 1502, + [2039] = 1503, + [2040] = 2010, + [2041] = 1504, + [2042] = 1447, + [2043] = 1553, + [2044] = 1554, + [2045] = 1472, + [2046] = 1573, + [2047] = 1455, + [2048] = 1480, + [2049] = 1456, + [2050] = 1481, + [2051] = 2051, + [2052] = 1511, + [2053] = 1469, + [2054] = 1482, + [2055] = 1483, + [2056] = 1446, + [2057] = 1529, + [2058] = 1484, + [2059] = 1485, + [2060] = 1479, + [2061] = 1473, + [2062] = 1458, + [2063] = 1498, + [2064] = 1499, + [2065] = 2065, + [2066] = 1510, + [2067] = 1512, + [2068] = 1459, + [2069] = 1470, + [2070] = 1478, + [2071] = 1471, + [2072] = 1500, [2073] = 2073, [2074] = 2074, - [2075] = 151, - [2076] = 1155, - [2077] = 1153, - [2078] = 2078, - [2079] = 1131, - [2080] = 1128, - [2081] = 1154, - [2082] = 1195, - [2083] = 1080, - [2084] = 2084, - [2085] = 1082, - [2086] = 1078, - [2087] = 2087, - [2088] = 1084, + [2075] = 2075, + [2076] = 1221, + [2077] = 1232, + [2078] = 1234, + [2079] = 1297, + [2080] = 1298, + [2081] = 1299, + [2082] = 168, + [2083] = 171, + [2084] = 1329, + [2085] = 1081, + [2086] = 1088, + [2087] = 1078, + [2088] = 2088, [2089] = 1082, - [2090] = 1084, - [2091] = 1080, - [2092] = 1082, - [2093] = 1080, - [2094] = 1078, - [2095] = 1084, - [2096] = 2096, - [2097] = 1982, - [2098] = 1078, - [2099] = 2099, - [2100] = 2100, + [2090] = 1088, + [2091] = 1081, + [2092] = 1984, + [2093] = 2093, + [2094] = 1082, + [2095] = 1088, + [2096] = 1082, + [2097] = 2097, + [2098] = 1081, + [2099] = 1078, + [2100] = 1078, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 2100, - [2105] = 2105, - [2106] = 2105, - [2107] = 2103, + [2104] = 2104, + [2105] = 2103, + [2106] = 2104, + [2107] = 2107, [2108] = 2108, - [2109] = 2109, - [2110] = 392, - [2111] = 2111, + [2109] = 2108, + [2110] = 2110, + [2111] = 391, [2112] = 2112, [2113] = 2113, [2114] = 2114, - [2115] = 1062, + [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 2118, + [2118] = 392, [2119] = 2119, [2120] = 2120, [2121] = 2121, - [2122] = 2117, - [2123] = 391, + [2122] = 2122, + [2123] = 2123, [2124] = 2124, - [2125] = 1061, + [2125] = 2125, [2126] = 2126, - [2127] = 1078, - [2128] = 2128, - [2129] = 2121, + [2127] = 2127, + [2128] = 390, + [2129] = 2123, [2130] = 2130, [2131] = 2131, - [2132] = 1082, - [2133] = 389, + [2132] = 2130, + [2133] = 2133, [2134] = 2134, - [2135] = 2001, - [2136] = 2136, - [2137] = 1084, - [2138] = 2138, - [2139] = 2139, - [2140] = 390, + [2135] = 1064, + [2136] = 1078, + [2137] = 2005, + [2138] = 1082, + [2139] = 1081, + [2140] = 1088, [2141] = 2141, - [2142] = 2141, + [2142] = 2142, [2143] = 2143, [2144] = 2144, - [2145] = 2145, - [2146] = 1080, - [2147] = 2144, - [2148] = 2128, - [2149] = 2118, - [2150] = 2143, - [2151] = 2151, - [2152] = 393, + [2145] = 2110, + [2146] = 393, + [2147] = 2116, + [2148] = 2119, + [2149] = 1062, + [2150] = 2133, + [2151] = 2141, + [2152] = 2152, [2153] = 2120, - [2154] = 1063, - [2155] = 2114, + [2154] = 2142, + [2155] = 389, [2156] = 2156, - [2157] = 2157, + [2157] = 1065, [2158] = 2158, [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 2158, + [2162] = 2162, [2163] = 2163, [2164] = 2164, - [2165] = 411, - [2166] = 2164, + [2165] = 2165, + [2166] = 2166, [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, [2171] = 2171, - [2172] = 2172, + [2172] = 2005, [2173] = 2173, [2174] = 2174, [2175] = 2175, - [2176] = 2176, + [2176] = 1066, [2177] = 2177, [2178] = 2178, [2179] = 2179, @@ -6170,221 +6170,221 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2181] = 2181, [2182] = 2182, [2183] = 2183, - [2184] = 2184, + [2184] = 2181, [2185] = 2185, - [2186] = 1072, - [2187] = 2187, + [2186] = 2186, + [2187] = 2017, [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 2191, + [2191] = 406, [2192] = 2192, - [2193] = 2001, - [2194] = 2194, - [2195] = 2160, + [2193] = 2005, + [2194] = 2181, + [2195] = 2174, [2196] = 2196, - [2197] = 2172, - [2198] = 2172, - [2199] = 2199, - [2200] = 2032, - [2201] = 2168, - [2202] = 2001, - [2203] = 2172, + [2197] = 2197, + [2198] = 2198, + [2199] = 2181, + [2200] = 2200, + [2201] = 2182, + [2202] = 2202, + [2203] = 2203, [2204] = 2204, [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 2172, - [2211] = 2211, - [2212] = 2001, - [2213] = 2213, + [2210] = 2210, + [2211] = 2205, + [2212] = 2207, + [2213] = 2181, [2214] = 2214, - [2215] = 2215, - [2216] = 1085, + [2215] = 1087, + [2216] = 1095, [2217] = 2217, - [2218] = 1093, - [2219] = 1097, - [2220] = 2220, - [2221] = 2213, + [2218] = 2218, + [2219] = 2218, + [2220] = 1093, + [2221] = 2221, [2222] = 2222, - [2223] = 2220, + [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, - [2227] = 2225, - [2228] = 2225, - [2229] = 1086, + [2227] = 2227, + [2228] = 2228, + [2229] = 2224, [2230] = 2230, - [2231] = 2220, + [2231] = 2231, [2232] = 2232, - [2233] = 1094, - [2234] = 2217, - [2235] = 1090, + [2233] = 2233, + [2234] = 2005, + [2235] = 2231, [2236] = 2236, - [2237] = 1087, - [2238] = 2214, - [2239] = 2032, - [2240] = 2240, - [2241] = 2241, + [2237] = 1084, + [2238] = 2017, + [2239] = 2225, + [2240] = 1105, + [2241] = 2236, [2242] = 2242, - [2243] = 2241, - [2244] = 2215, - [2245] = 2245, + [2243] = 2243, + [2244] = 2230, + [2245] = 2243, [2246] = 2246, - [2247] = 2245, - [2248] = 2248, - [2249] = 2032, - [2250] = 2250, - [2251] = 2236, - [2252] = 2252, - [2253] = 2226, - [2254] = 2254, - [2255] = 2255, - [2256] = 2232, - [2257] = 2255, - [2258] = 2252, + [2247] = 2226, + [2248] = 2017, + [2249] = 2249, + [2250] = 2228, + [2251] = 2223, + [2252] = 2217, + [2253] = 1089, + [2254] = 1097, + [2255] = 1099, + [2256] = 2256, + [2257] = 2257, + [2258] = 2232, [2259] = 2246, - [2260] = 1092, - [2261] = 2250, - [2262] = 2254, - [2263] = 2263, - [2264] = 2264, + [2260] = 2230, + [2261] = 2257, + [2262] = 2226, + [2263] = 2249, + [2264] = 2256, [2265] = 2265, [2266] = 2266, [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2269, + [2271] = 2271, [2272] = 2272, - [2273] = 2266, + [2273] = 2271, [2274] = 2274, [2275] = 2275, - [2276] = 2276, - [2277] = 2277, + [2276] = 2268, + [2277] = 2266, [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2277, + [2281] = 2281, [2282] = 2282, [2283] = 2283, - [2284] = 2282, - [2285] = 2264, + [2284] = 2278, + [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 2292, - [2293] = 2289, - [2294] = 2280, - [2295] = 2295, - [2296] = 2283, + [2292] = 2289, + [2293] = 2293, + [2294] = 2274, + [2295] = 2272, + [2296] = 2296, [2297] = 2297, - [2298] = 2291, + [2298] = 2265, [2299] = 2299, - [2300] = 2263, - [2301] = 2286, + [2300] = 2299, + [2301] = 2270, [2302] = 2302, - [2303] = 2290, - [2304] = 2292, + [2303] = 2281, + [2304] = 2304, [2305] = 2305, - [2306] = 2272, - [2307] = 2295, - [2308] = 2308, - [2309] = 2032, - [2310] = 2305, - [2311] = 2268, - [2312] = 2275, - [2313] = 2313, - [2314] = 2302, - [2315] = 2267, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, + [2306] = 2306, + [2307] = 2290, + [2308] = 2282, + [2309] = 2309, + [2310] = 2310, + [2311] = 2296, + [2312] = 2297, + [2313] = 2310, + [2314] = 2288, + [2315] = 2279, + [2316] = 2280, + [2317] = 2293, + [2318] = 2017, [2319] = 2319, [2320] = 2320, [2321] = 2321, [2322] = 2322, - [2323] = 2322, + [2323] = 2323, [2324] = 2324, - [2325] = 2325, + [2325] = 2323, [2326] = 2326, [2327] = 2327, - [2328] = 2317, + [2328] = 2326, [2329] = 2329, - [2330] = 2330, + [2330] = 2324, [2331] = 2331, - [2332] = 2318, + [2332] = 2332, [2333] = 2333, - [2334] = 2320, - [2335] = 2321, + [2334] = 2327, + [2335] = 2335, [2336] = 2336, [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 2340, - [2341] = 2324, + [2340] = 2326, + [2341] = 2341, [2342] = 2342, - [2343] = 2078, - [2344] = 2344, - [2345] = 2331, + [2343] = 2343, + [2344] = 2331, + [2345] = 2345, [2346] = 2346, - [2347] = 2347, + [2347] = 2319, [2348] = 2348, [2349] = 2349, - [2350] = 2329, - [2351] = 2351, - [2352] = 2337, + [2350] = 2350, + [2351] = 2349, + [2352] = 2329, [2353] = 2353, - [2354] = 2324, + [2354] = 2354, [2355] = 2355, - [2356] = 2346, + [2356] = 2073, [2357] = 2357, - [2358] = 2319, + [2358] = 2342, [2359] = 2359, [2360] = 2360, - [2361] = 2361, - [2362] = 2340, - [2363] = 2349, - [2364] = 2336, - [2365] = 2342, - [2366] = 2347, - [2367] = 2351, - [2368] = 2368, - [2369] = 2326, - [2370] = 2353, - [2371] = 2371, - [2372] = 2333, - [2373] = 2357, - [2374] = 2359, - [2375] = 2375, + [2361] = 2348, + [2362] = 2350, + [2363] = 2322, + [2364] = 2320, + [2365] = 2365, + [2366] = 2338, + [2367] = 2333, + [2368] = 2339, + [2369] = 2359, + [2370] = 2355, + [2371] = 2354, + [2372] = 2372, + [2373] = 2360, + [2374] = 2357, + [2375] = 2372, [2376] = 2376, [2377] = 2377, [2378] = 2378, [2379] = 2379, - [2380] = 2380, - [2381] = 147, - [2382] = 2378, - [2383] = 2383, - [2384] = 149, - [2385] = 2377, - [2386] = 151, + [2380] = 168, + [2381] = 170, + [2382] = 171, + [2383] = 172, + [2384] = 2384, + [2385] = 2093, + [2386] = 1221, [2387] = 2387, [2388] = 2388, - [2389] = 2389, - [2390] = 1195, + [2389] = 1299, + [2390] = 2390, [2391] = 2391, - [2392] = 2380, - [2393] = 2379, - [2394] = 2087, + [2392] = 2392, + [2393] = 2097, + [2394] = 2394, [2395] = 2395, [2396] = 2396, - [2397] = 1128, - [2398] = 2383, + [2397] = 2397, + [2398] = 2398, [2399] = 2399, [2400] = 2400, [2401] = 2401, @@ -6393,18 +6393,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2404] = 2404, [2405] = 2405, [2406] = 2406, - [2407] = 2407, + [2407] = 1232, [2408] = 2408, - [2409] = 2376, + [2409] = 2398, [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 2410, - [2414] = 2411, - [2415] = 152, - [2416] = 2416, - [2417] = 2417, - [2418] = 2379, + [2413] = 2377, + [2414] = 2408, + [2415] = 1329, + [2416] = 1234, + [2417] = 2392, + [2418] = 2418, [2419] = 2419, [2420] = 2420, [2421] = 2421, @@ -6412,171 +6412,171 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2423] = 2423, [2424] = 2424, [2425] = 2425, - [2426] = 2383, - [2427] = 2375, - [2428] = 2420, - [2429] = 2404, - [2430] = 2074, - [2431] = 2431, - [2432] = 2416, - [2433] = 2433, - [2434] = 2399, - [2435] = 2433, - [2436] = 2407, - [2437] = 2417, - [2438] = 2423, + [2426] = 2426, + [2427] = 2399, + [2428] = 2390, + [2429] = 1298, + [2430] = 2430, + [2431] = 2401, + [2432] = 2397, + [2433] = 2402, + [2434] = 2403, + [2435] = 2435, + [2436] = 2401, + [2437] = 2402, + [2438] = 2378, [2439] = 2439, - [2440] = 2440, - [2441] = 1132, - [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2431, + [2440] = 2400, + [2441] = 2410, + [2442] = 2411, + [2443] = 2404, + [2444] = 2425, + [2445] = 2426, [2446] = 2446, - [2447] = 2388, + [2447] = 2075, [2448] = 2439, - [2449] = 1153, - [2450] = 2425, - [2451] = 2380, - [2452] = 2433, - [2453] = 2402, - [2454] = 2444, - [2455] = 2387, - [2456] = 2395, - [2457] = 2412, - [2458] = 2443, - [2459] = 2459, - [2460] = 2422, - [2461] = 2396, - [2462] = 1131, - [2463] = 2389, - [2464] = 2383, - [2465] = 2096, - [2466] = 2421, - [2467] = 2424, - [2468] = 1154, - [2469] = 2469, - [2470] = 1155, - [2471] = 2401, - [2472] = 2419, + [2449] = 2418, + [2450] = 2450, + [2451] = 2378, + [2452] = 2419, + [2453] = 2396, + [2454] = 2454, + [2455] = 2412, + [2456] = 2394, + [2457] = 2457, + [2458] = 2395, + [2459] = 2391, + [2460] = 2435, + [2461] = 2439, + [2462] = 2420, + [2463] = 2421, + [2464] = 2401, + [2465] = 2465, + [2466] = 2422, + [2467] = 2467, + [2468] = 2423, + [2469] = 2465, + [2470] = 2405, + [2471] = 2471, + [2472] = 2457, [2473] = 2406, - [2474] = 2380, - [2475] = 2442, - [2476] = 2476, - [2477] = 2477, + [2474] = 2450, + [2475] = 2471, + [2476] = 1297, + [2477] = 2402, [2478] = 2478, [2479] = 2479, [2480] = 2480, [2481] = 2481, [2482] = 2482, - [2483] = 1056, + [2483] = 2483, [2484] = 2484, [2485] = 2485, [2486] = 2486, [2487] = 2487, - [2488] = 1102, + [2488] = 2488, [2489] = 2489, [2490] = 2490, - [2491] = 1192, - [2492] = 1246, - [2493] = 1299, - [2494] = 2494, - [2495] = 1352, + [2491] = 2491, + [2492] = 2492, + [2493] = 1229, + [2494] = 2482, + [2495] = 2495, [2496] = 2496, - [2497] = 2497, + [2497] = 2102, [2498] = 2498, - [2499] = 2499, + [2499] = 2107, [2500] = 2500, [2501] = 2501, [2502] = 2502, [2503] = 2503, [2504] = 2504, - [2505] = 2505, + [2505] = 2491, [2506] = 2506, - [2507] = 2507, - [2508] = 1099, - [2509] = 2509, + [2507] = 2498, + [2508] = 2500, + [2509] = 2502, [2510] = 2510, [2511] = 2511, - [2512] = 2512, - [2513] = 2498, - [2514] = 2514, + [2512] = 2489, + [2513] = 2513, + [2514] = 2504, [2515] = 2515, - [2516] = 2516, - [2517] = 2512, + [2516] = 2511, + [2517] = 2480, [2518] = 2518, - [2519] = 2487, - [2520] = 2516, - [2521] = 2478, - [2522] = 2522, - [2523] = 2499, + [2519] = 2519, + [2520] = 2520, + [2521] = 1104, + [2522] = 2489, + [2523] = 2523, [2524] = 2524, - [2525] = 1103, - [2526] = 2526, - [2527] = 2527, + [2525] = 2525, + [2526] = 2500, + [2527] = 1096, [2528] = 2528, - [2529] = 2514, - [2530] = 2515, + [2529] = 2529, + [2530] = 2530, [2531] = 2531, - [2532] = 2532, - [2533] = 2518, - [2534] = 2528, + [2532] = 2530, + [2533] = 2533, + [2534] = 1335, [2535] = 2535, [2536] = 2536, - [2537] = 2532, - [2538] = 2489, - [2539] = 2494, - [2540] = 2503, - [2541] = 2507, - [2542] = 2498, - [2543] = 2515, - [2544] = 2516, - [2545] = 2478, - [2546] = 2546, - [2547] = 2526, + [2537] = 2482, + [2538] = 2538, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2481, + [2545] = 2533, + [2546] = 2484, + [2547] = 2502, [2548] = 2548, - [2549] = 2516, - [2550] = 2535, + [2549] = 2549, + [2550] = 2503, [2551] = 2551, [2552] = 2552, - [2553] = 2553, + [2553] = 2541, [2554] = 2554, - [2555] = 2479, - [2556] = 2556, - [2557] = 2557, - [2558] = 2526, - [2559] = 2509, - [2560] = 2560, - [2561] = 2099, - [2562] = 2562, - [2563] = 2102, - [2564] = 2564, - [2565] = 2565, - [2566] = 2566, - [2567] = 2567, - [2568] = 2527, - [2569] = 2531, - [2570] = 2478, - [2571] = 2510, - [2572] = 2572, + [2555] = 2511, + [2556] = 2498, + [2557] = 2500, + [2558] = 2485, + [2559] = 2559, + [2560] = 2523, + [2561] = 2561, + [2562] = 1098, + [2563] = 2563, + [2564] = 2498, + [2565] = 1058, + [2566] = 2525, + [2567] = 1094, + [2568] = 2568, + [2569] = 2501, + [2570] = 1141, + [2571] = 2484, + [2572] = 2491, [2573] = 2573, - [2574] = 2507, + [2574] = 2568, [2575] = 2510, - [2576] = 1098, + [2576] = 2576, [2577] = 2577, - [2578] = 2536, + [2578] = 2539, [2579] = 2579, - [2580] = 2579, + [2580] = 2519, [2581] = 2479, - [2582] = 2522, - [2583] = 2515, - [2584] = 2477, - [2585] = 2585, - [2586] = 2586, + [2582] = 1279, + [2583] = 2482, + [2584] = 2584, + [2585] = 2559, + [2586] = 2573, [2587] = 2587, [2588] = 2588, [2589] = 2589, - [2590] = 2590, + [2590] = 2112, [2591] = 2591, [2592] = 2592, [2593] = 2593, @@ -6589,264 +6589,264 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 2601, + [2603] = 2603, [2604] = 2604, [2605] = 2605, - [2606] = 2606, + [2606] = 159, [2607] = 2607, [2608] = 2608, [2609] = 2609, [2610] = 2610, - [2611] = 2593, + [2611] = 2608, [2612] = 2612, [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, + [2614] = 2609, + [2615] = 2588, + [2616] = 2591, [2617] = 2617, - [2618] = 2592, - [2619] = 2597, - [2620] = 2607, - [2621] = 2608, + [2618] = 2618, + [2619] = 2605, + [2620] = 2620, + [2621] = 2602, [2622] = 2622, [2623] = 2623, - [2624] = 2624, + [2624] = 2622, [2625] = 2625, - [2626] = 2589, + [2626] = 2626, [2627] = 2627, [2628] = 2628, [2629] = 2629, - [2630] = 2605, + [2630] = 2630, [2631] = 2631, [2632] = 2632, - [2633] = 2633, + [2633] = 2628, [2634] = 2634, [2635] = 2635, [2636] = 2636, [2637] = 2637, - [2638] = 2599, + [2638] = 2638, [2639] = 2639, - [2640] = 2631, - [2641] = 2641, - [2642] = 2642, - [2643] = 2643, - [2644] = 2627, - [2645] = 2610, - [2646] = 2616, + [2640] = 2640, + [2641] = 2597, + [2642] = 2613, + [2643] = 2595, + [2644] = 2629, + [2645] = 2645, + [2646] = 2646, [2647] = 2647, - [2648] = 2642, + [2648] = 2648, [2649] = 2649, - [2650] = 2635, - [2651] = 2595, + [2650] = 2650, + [2651] = 2651, [2652] = 2652, [2653] = 2653, - [2654] = 2654, - [2655] = 2604, - [2656] = 2606, - [2657] = 2643, - [2658] = 2658, + [2654] = 2639, + [2655] = 2655, + [2656] = 2656, + [2657] = 2657, + [2658] = 2649, [2659] = 2659, - [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2659, - [2665] = 2665, + [2660] = 2613, + [2661] = 2618, + [2662] = 2605, + [2663] = 2646, + [2664] = 2622, + [2665] = 2628, [2666] = 2666, - [2667] = 2667, + [2667] = 2640, [2668] = 2668, [2669] = 2669, - [2670] = 2670, - [2671] = 2671, - [2672] = 2671, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2637, - [2679] = 182, + [2670] = 2646, + [2671] = 2649, + [2672] = 2650, + [2673] = 2651, + [2674] = 2617, + [2675] = 2657, + [2676] = 2659, + [2677] = 2666, + [2678] = 2668, + [2679] = 2679, [2680] = 2680, [2681] = 2681, - [2682] = 2112, - [2683] = 2622, - [2684] = 2124, - [2685] = 2108, - [2686] = 2136, - [2687] = 2660, - [2688] = 2662, - [2689] = 2665, + [2682] = 2601, + [2683] = 2683, + [2684] = 2679, + [2685] = 2685, + [2686] = 2599, + [2687] = 2625, + [2688] = 2626, + [2689] = 2689, [2690] = 2690, - [2691] = 2661, - [2692] = 2674, - [2693] = 2653, - [2694] = 2639, + [2691] = 2690, + [2692] = 2692, + [2693] = 2693, + [2694] = 2694, [2695] = 2695, - [2696] = 2696, - [2697] = 2649, - [2698] = 2632, - [2699] = 2699, - [2700] = 2633, - [2701] = 2598, - [2702] = 2599, - [2703] = 2600, - [2704] = 2704, - [2705] = 2601, - [2706] = 2602, - [2707] = 2609, - [2708] = 2625, - [2709] = 2593, - [2710] = 2710, - [2711] = 2612, - [2712] = 2613, - [2713] = 2614, - [2714] = 2592, - [2715] = 2597, - [2716] = 2607, - [2717] = 2608, - [2718] = 2623, - [2719] = 2719, - [2720] = 2589, - [2721] = 2627, - [2722] = 2628, - [2723] = 2676, - [2724] = 2631, - [2725] = 2632, - [2726] = 2633, - [2727] = 2663, - [2728] = 2641, - [2729] = 2729, - [2730] = 2595, - [2731] = 2600, - [2732] = 2732, - [2733] = 2663, - [2734] = 2734, - [2735] = 2666, - [2736] = 2667, - [2737] = 2668, - [2738] = 2738, - [2739] = 2680, - [2740] = 2681, - [2741] = 2598, - [2742] = 2599, - [2743] = 2600, - [2744] = 2601, - [2745] = 2593, - [2746] = 2612, - [2747] = 2613, - [2748] = 2614, - [2749] = 2592, - [2750] = 2597, - [2751] = 2607, - [2752] = 2589, - [2753] = 2627, - [2754] = 2631, - [2755] = 2633, - [2756] = 2641, - [2757] = 183, - [2758] = 2663, - [2759] = 2600, - [2760] = 2601, - [2761] = 2641, - [2762] = 2612, - [2763] = 2597, - [2764] = 2607, - [2765] = 2589, - [2766] = 2627, - [2767] = 2631, - [2768] = 2633, + [2696] = 2600, + [2697] = 2607, + [2698] = 2608, + [2699] = 2609, + [2700] = 2700, + [2701] = 2680, + [2702] = 2702, + [2703] = 2631, + [2704] = 2632, + [2705] = 2705, + [2706] = 2651, + [2707] = 2613, + [2708] = 2618, + [2709] = 2605, + [2710] = 2622, + [2711] = 2646, + [2712] = 2649, + [2713] = 2650, + [2714] = 2651, + [2715] = 2657, + [2716] = 2659, + [2717] = 2666, + [2718] = 2680, + [2719] = 2681, + [2720] = 2599, + [2721] = 2626, + [2722] = 2681, + [2723] = 2690, + [2724] = 2601, + [2725] = 2725, + [2726] = 2600, + [2727] = 2122, + [2728] = 2124, + [2729] = 2605, + [2730] = 2622, + [2731] = 2731, + [2732] = 2649, + [2733] = 2659, + [2734] = 2666, + [2735] = 2657, + [2736] = 2680, + [2737] = 2681, + [2738] = 2599, + [2739] = 2626, + [2740] = 2599, + [2741] = 2741, + [2742] = 2605, + [2743] = 2659, + [2744] = 2599, + [2745] = 2626, + [2746] = 2631, + [2747] = 2695, + [2748] = 2632, + [2749] = 2625, + [2750] = 2750, + [2751] = 2626, + [2752] = 2650, + [2753] = 2125, + [2754] = 2126, + [2755] = 2599, + [2756] = 2626, + [2757] = 2757, + [2758] = 2589, + [2759] = 2759, + [2760] = 2659, + [2761] = 2759, + [2762] = 2666, + [2763] = 2636, + [2764] = 2668, + [2765] = 2694, + [2766] = 2680, + [2767] = 2767, + [2768] = 2741, [2769] = 2769, - [2770] = 2600, - [2771] = 2597, - [2772] = 2631, - [2773] = 2633, - [2774] = 2774, + [2770] = 2113, + [2771] = 2114, + [2772] = 2115, + [2773] = 2636, + [2774] = 2117, [2775] = 2775, - [2776] = 2623, + [2776] = 2776, [2777] = 2777, - [2778] = 2613, - [2779] = 2779, - [2780] = 2631, - [2781] = 2633, - [2782] = 2680, - [2783] = 2609, - [2784] = 2784, - [2785] = 2605, + [2778] = 2778, + [2779] = 2598, + [2780] = 2681, + [2781] = 2781, + [2782] = 2782, + [2783] = 2783, + [2784] = 2645, + [2785] = 2600, [2786] = 2786, - [2787] = 2704, - [2788] = 2681, - [2789] = 2789, - [2790] = 2628, - [2791] = 2791, - [2792] = 2614, - [2793] = 2791, - [2794] = 2131, - [2795] = 2634, - [2796] = 2139, - [2797] = 2151, - [2798] = 2798, - [2799] = 2799, - [2800] = 2800, - [2801] = 2109, - [2802] = 2666, - [2803] = 2610, - [2804] = 2616, - [2805] = 2156, - [2806] = 2667, - [2807] = 2690, - [2808] = 2668, - [2809] = 2126, - [2810] = 2145, - [2811] = 2116, - [2812] = 2699, - [2813] = 2799, - [2814] = 2729, - [2815] = 2585, - [2816] = 2816, + [2787] = 2787, + [2788] = 2757, + [2789] = 2783, + [2790] = 2790, + [2791] = 2652, + [2792] = 2792, + [2793] = 2592, + [2794] = 2790, + [2795] = 2795, + [2796] = 2796, + [2797] = 2797, + [2798] = 2679, + [2799] = 2690, + [2800] = 2612, + [2801] = 2801, + [2802] = 2778, + [2803] = 2776, + [2804] = 2786, + [2805] = 2787, + [2806] = 2693, + [2807] = 2593, + [2808] = 2587, + [2809] = 2796, + [2810] = 2603, + [2811] = 2797, + [2812] = 2640, + [2813] = 2640, + [2814] = 2618, + [2815] = 158, + [2816] = 2636, [2817] = 2817, - [2818] = 2800, - [2819] = 2817, - [2820] = 2784, - [2821] = 2654, - [2822] = 2609, - [2823] = 2609, - [2824] = 2824, - [2825] = 2605, - [2826] = 2791, - [2827] = 2598, - [2828] = 2612, - [2829] = 2605, - [2830] = 2791, - [2831] = 2673, - [2832] = 2732, - [2833] = 2833, - [2834] = 2586, - [2835] = 2789, - [2836] = 2636, - [2837] = 2629, - [2838] = 2838, - [2839] = 2615, - [2840] = 2670, - [2841] = 2696, - [2842] = 2602, - [2843] = 2632, - [2844] = 2624, - [2845] = 2675, - [2846] = 2846, - [2847] = 2847, + [2818] = 2607, + [2819] = 2769, + [2820] = 2638, + [2821] = 2821, + [2822] = 2783, + [2823] = 2790, + [2824] = 2636, + [2825] = 2769, + [2826] = 2826, + [2827] = 2827, + [2828] = 2700, + [2829] = 2826, + [2830] = 2627, + [2831] = 2777, + [2832] = 2594, + [2833] = 2144, + [2834] = 2769, + [2835] = 2702, + [2836] = 2827, + [2837] = 2693, + [2838] = 2610, + [2839] = 2839, + [2840] = 2620, + [2841] = 2152, + [2842] = 2156, + [2843] = 2625, + [2844] = 2596, + [2845] = 2782, + [2846] = 2640, + [2847] = 2692, [2848] = 2848, [2849] = 2849, [2850] = 2850, [2851] = 2851, - [2852] = 2176, + [2852] = 2852, [2853] = 2853, [2854] = 2854, [2855] = 2855, [2856] = 2856, [2857] = 2857, - [2858] = 2194, - [2859] = 2859, - [2860] = 2199, + [2858] = 2858, + [2859] = 2167, + [2860] = 2168, [2861] = 2861, [2862] = 2862, [2863] = 2863, @@ -6855,49 +6855,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2866] = 2866, [2867] = 2867, [2868] = 2868, - [2869] = 2209, - [2870] = 2157, + [2869] = 2171, + [2870] = 2870, [2871] = 2871, [2872] = 2872, - [2873] = 2190, + [2873] = 2873, [2874] = 2874, - [2875] = 2187, + [2875] = 2197, [2876] = 2876, - [2877] = 2877, - [2878] = 2850, - [2879] = 2879, + [2877] = 2175, + [2878] = 2878, + [2879] = 2177, [2880] = 2880, - [2881] = 2881, + [2881] = 2198, [2882] = 2882, [2883] = 2883, [2884] = 2884, - [2885] = 2885, - [2886] = 170, - [2887] = 2887, + [2885] = 2179, + [2886] = 2886, + [2887] = 2862, [2888] = 2888, - [2889] = 2889, - [2890] = 2879, + [2889] = 2204, + [2890] = 2890, [2891] = 2891, - [2892] = 2884, + [2892] = 2892, [2893] = 2893, [2894] = 2894, [2895] = 2895, [2896] = 2896, - [2897] = 2851, + [2897] = 2897, [2898] = 2898, [2899] = 2899, [2900] = 2900, - [2901] = 2901, + [2901] = 2858, [2902] = 2902, [2903] = 2903, [2904] = 2904, - [2905] = 2905, + [2905] = 2876, [2906] = 2906, - [2907] = 2874, + [2907] = 2907, [2908] = 2908, [2909] = 2909, [2910] = 2910, - [2911] = 2911, + [2911] = 2872, [2912] = 2912, [2913] = 2913, [2914] = 2914, @@ -6905,253 +6905,253 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2916] = 2916, [2917] = 2917, [2918] = 2918, - [2919] = 2868, - [2920] = 2920, + [2919] = 2919, + [2920] = 2909, [2921] = 2921, [2922] = 2922, - [2923] = 2923, + [2923] = 2891, [2924] = 2924, - [2925] = 2925, + [2925] = 2892, [2926] = 2926, [2927] = 2927, [2928] = 2928, - [2929] = 2929, - [2930] = 2885, - [2931] = 2889, - [2932] = 2182, - [2933] = 2204, + [2929] = 2870, + [2930] = 2930, + [2931] = 2931, + [2932] = 2857, + [2933] = 2899, [2934] = 2934, - [2935] = 2846, + [2935] = 2935, [2936] = 2936, - [2937] = 2181, + [2937] = 2910, [2938] = 2938, [2939] = 2939, - [2940] = 2940, + [2940] = 2162, [2941] = 2941, - [2942] = 2903, - [2943] = 2943, - [2944] = 2173, + [2942] = 2942, + [2943] = 2208, + [2944] = 2186, [2945] = 2945, - [2946] = 2180, + [2946] = 2946, [2947] = 2947, [2948] = 2948, [2949] = 2949, - [2950] = 2208, - [2951] = 2948, - [2952] = 2952, + [2950] = 2950, + [2951] = 2951, + [2952] = 2200, [2953] = 2953, [2954] = 2954, - [2955] = 2171, + [2955] = 2165, [2956] = 2956, [2957] = 2957, [2958] = 2958, [2959] = 2959, [2960] = 2960, - [2961] = 2945, + [2961] = 2961, [2962] = 2962, [2963] = 2963, - [2964] = 2943, + [2964] = 2882, [2965] = 2965, - [2966] = 2920, + [2966] = 2966, [2967] = 2967, - [2968] = 2968, + [2968] = 2858, [2969] = 2969, - [2970] = 2939, - [2971] = 2971, - [2972] = 2972, + [2970] = 2970, + [2971] = 2185, + [2972] = 406, [2973] = 2973, - [2974] = 2936, - [2975] = 2888, - [2976] = 2976, + [2974] = 2202, + [2975] = 2975, + [2976] = 2209, [2977] = 2977, - [2978] = 2978, - [2979] = 2929, + [2978] = 2900, + [2979] = 2979, [2980] = 2980, - [2981] = 2183, - [2982] = 2853, + [2981] = 2981, + [2982] = 2849, [2983] = 2983, - [2984] = 2871, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2978, - [2989] = 2989, - [2990] = 2167, - [2991] = 2877, - [2992] = 2992, - [2993] = 2855, - [2994] = 2994, - [2995] = 2859, - [2996] = 2862, - [2997] = 2863, - [2998] = 2998, - [2999] = 2999, - [3000] = 3000, - [3001] = 2936, - [3002] = 2898, - [3003] = 2899, + [2984] = 2183, + [2985] = 2941, + [2986] = 2850, + [2987] = 2203, + [2988] = 2988, + [2989] = 2934, + [2990] = 2918, + [2991] = 2991, + [2992] = 2210, + [2993] = 2853, + [2994] = 2903, + [2995] = 2995, + [2996] = 2996, + [2997] = 2997, + [2998] = 2890, + [2999] = 2163, + [3000] = 2173, + [3001] = 3001, + [3002] = 3001, + [3003] = 2919, [3004] = 3004, - [3005] = 2906, - [3006] = 2908, - [3007] = 2910, - [3008] = 2911, - [3009] = 2889, - [3010] = 3010, - [3011] = 2855, - [3012] = 2179, + [3005] = 3005, + [3006] = 2942, + [3007] = 2855, + [3008] = 3008, + [3009] = 2958, + [3010] = 2856, + [3011] = 2970, + [3012] = 2921, [3013] = 3013, - [3014] = 3014, - [3015] = 2846, - [3016] = 2881, - [3017] = 3017, + [3014] = 3013, + [3015] = 3015, + [3016] = 2912, + [3017] = 2164, [3018] = 3018, - [3019] = 3019, + [3019] = 2930, [3020] = 3020, - [3021] = 2978, - [3022] = 3022, + [3021] = 2915, + [3022] = 2904, [3023] = 3023, - [3024] = 2898, - [3025] = 2899, + [3024] = 2867, + [3025] = 3025, [3026] = 3026, - [3027] = 3027, - [3028] = 2889, - [3029] = 3029, - [3030] = 2927, - [3031] = 2872, - [3032] = 2936, - [3033] = 3033, - [3034] = 3034, - [3035] = 411, - [3036] = 2918, - [3037] = 2211, - [3038] = 3010, - [3039] = 2896, - [3040] = 3040, - [3041] = 3041, - [3042] = 2956, - [3043] = 2987, - [3044] = 2957, + [3027] = 2953, + [3028] = 2959, + [3029] = 2951, + [3030] = 2861, + [3031] = 2967, + [3032] = 2166, + [3033] = 2866, + [3034] = 2957, + [3035] = 2886, + [3036] = 3036, + [3037] = 2983, + [3038] = 3038, + [3039] = 3039, + [3040] = 2180, + [3041] = 2872, + [3042] = 3042, + [3043] = 3043, + [3044] = 3015, [3045] = 3045, - [3046] = 2188, - [3047] = 2189, - [3048] = 2898, - [3049] = 2862, - [3050] = 2899, - [3051] = 2863, - [3052] = 2978, - [3053] = 3053, - [3054] = 2900, - [3055] = 3055, - [3056] = 3056, - [3057] = 2901, - [3058] = 2927, - [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, + [3046] = 3046, + [3047] = 3047, + [3048] = 3048, + [3049] = 2886, + [3050] = 2895, + [3051] = 3051, + [3052] = 3046, + [3053] = 2178, + [3054] = 3054, + [3055] = 2864, + [3056] = 2159, + [3057] = 2913, + [3058] = 2188, + [3059] = 2895, + [3060] = 2190, + [3061] = 2891, + [3062] = 2858, + [3063] = 2192, [3064] = 3064, - [3065] = 2170, - [3066] = 3066, - [3067] = 2902, - [3068] = 2859, - [3069] = 2904, - [3070] = 3070, - [3071] = 2847, - [3072] = 3072, - [3073] = 3073, - [3074] = 2865, + [3065] = 3065, + [3066] = 2196, + [3067] = 3067, + [3068] = 2884, + [3069] = 3069, + [3070] = 2892, + [3071] = 2954, + [3072] = 3043, + [3073] = 2975, + [3074] = 2874, [3075] = 3075, - [3076] = 2174, - [3077] = 2175, - [3078] = 3034, - [3079] = 2906, - [3080] = 3018, - [3081] = 2926, - [3082] = 3082, - [3083] = 3083, - [3084] = 2908, - [3085] = 2905, - [3086] = 2177, - [3087] = 2987, - [3088] = 2967, - [3089] = 2178, + [3076] = 3076, + [3077] = 3077, + [3078] = 3078, + [3079] = 2160, + [3080] = 2852, + [3081] = 2161, + [3082] = 2935, + [3083] = 2872, + [3084] = 2945, + [3085] = 3085, + [3086] = 3086, + [3087] = 3087, + [3088] = 2946, + [3089] = 2951, [3090] = 3090, - [3091] = 3091, - [3092] = 2196, - [3093] = 2205, - [3094] = 2191, - [3095] = 2922, - [3096] = 2910, - [3097] = 2953, - [3098] = 2911, - [3099] = 3099, - [3100] = 2163, + [3091] = 2912, + [3092] = 3092, + [3093] = 2965, + [3094] = 3036, + [3095] = 3095, + [3096] = 2863, + [3097] = 2873, + [3098] = 2997, + [3099] = 2924, + [3100] = 2891, [3101] = 3101, - [3102] = 2206, - [3103] = 2161, - [3104] = 2940, - [3105] = 2866, - [3106] = 2968, - [3107] = 2169, - [3108] = 2184, - [3109] = 3109, - [3110] = 2912, - [3111] = 2913, - [3112] = 3062, - [3113] = 3113, - [3114] = 3114, + [3102] = 3102, + [3103] = 3103, + [3104] = 2892, + [3105] = 2979, + [3106] = 2169, + [3107] = 2170, + [3108] = 3108, + [3109] = 3076, + [3110] = 165, + [3111] = 3111, + [3112] = 2995, + [3113] = 3067, + [3114] = 3067, [3115] = 3115, [3116] = 3116, - [3117] = 3017, - [3118] = 3118, - [3119] = 2925, - [3120] = 3060, + [3117] = 3018, + [3118] = 3077, + [3119] = 2867, + [3120] = 3120, [3121] = 3121, [3122] = 3122, - [3123] = 3064, - [3124] = 3061, + [3123] = 3123, + [3124] = 2865, [3125] = 3125, - [3126] = 2959, - [3127] = 2882, - [3128] = 3128, - [3129] = 2914, - [3130] = 2915, - [3131] = 2960, - [3132] = 2207, - [3133] = 2849, - [3134] = 3134, - [3135] = 2962, - [3136] = 3020, - [3137] = 2916, - [3138] = 3138, - [3139] = 3139, - [3140] = 2159, - [3141] = 2963, + [3126] = 3101, + [3127] = 3127, + [3128] = 3043, + [3129] = 3129, + [3130] = 2871, + [3131] = 3131, + [3132] = 3132, + [3133] = 2874, + [3134] = 3048, + [3135] = 2928, + [3136] = 2980, + [3137] = 3076, + [3138] = 3077, + [3139] = 2858, + [3140] = 2882, + [3141] = 3141, [3142] = 3142, - [3143] = 2938, - [3144] = 2947, - [3145] = 3116, - [3146] = 2985, - [3147] = 2867, - [3148] = 3045, - [3149] = 2965, - [3150] = 2934, - [3151] = 3013, + [3143] = 3020, + [3144] = 2938, + [3145] = 3108, + [3146] = 2880, + [3147] = 2890, + [3148] = 3148, + [3149] = 2961, + [3150] = 3150, + [3151] = 2927, [3152] = 3152, - [3153] = 2891, - [3154] = 2986, - [3155] = 2936, - [3156] = 3156, - [3157] = 3157, + [3153] = 3148, + [3154] = 2895, + [3155] = 3125, + [3156] = 3103, + [3157] = 3005, [3158] = 3158, [3159] = 3159, [3160] = 3160, [3161] = 3161, - [3162] = 3072, + [3162] = 3162, [3163] = 3163, [3164] = 3164, - [3165] = 3073, + [3165] = 3165, [3166] = 3166, [3167] = 3167, [3168] = 3168, @@ -7160,14 +7160,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3171] = 3171, [3172] = 3172, [3173] = 3173, - [3174] = 3161, + [3174] = 3174, [3175] = 3175, - [3176] = 3164, + [3176] = 3176, [3177] = 3177, [3178] = 3178, - [3179] = 3179, + [3179] = 3162, [3180] = 3180, - [3181] = 3181, + [3181] = 3180, [3182] = 3182, [3183] = 3183, [3184] = 3184, @@ -7175,278 +7175,278 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3186] = 3186, [3187] = 3187, [3188] = 3188, - [3189] = 3189, + [3189] = 3185, [3190] = 3190, [3191] = 3191, [3192] = 3192, [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 3169, + [3196] = 3170, [3197] = 3197, - [3198] = 3160, - [3199] = 3170, + [3198] = 3198, + [3199] = 3199, [3200] = 3200, - [3201] = 3171, - [3202] = 3166, + [3201] = 3201, + [3202] = 3183, [3203] = 3203, - [3204] = 3204, - [3205] = 3169, - [3206] = 3206, - [3207] = 3207, - [3208] = 3173, + [3204] = 3203, + [3205] = 3205, + [3206] = 3162, + [3207] = 3171, + [3208] = 3208, [3209] = 3209, - [3210] = 3160, + [3210] = 3210, [3211] = 3211, - [3212] = 3179, - [3213] = 3213, + [3212] = 3185, + [3213] = 3173, [3214] = 3214, [3215] = 3215, [3216] = 3216, [3217] = 3217, [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3164, + [3219] = 3214, + [3220] = 3173, + [3221] = 3221, [3222] = 3222, - [3223] = 3223, - [3224] = 3170, + [3223] = 3166, + [3224] = 3224, [3225] = 3225, - [3226] = 3173, - [3227] = 3161, + [3226] = 3170, + [3227] = 3173, [3228] = 3175, - [3229] = 3229, + [3229] = 3176, [3230] = 3230, [3231] = 3231, - [3232] = 3232, - [3233] = 3173, + [3232] = 3194, + [3233] = 3187, [3234] = 3234, [3235] = 3173, - [3236] = 3192, - [3237] = 3156, + [3236] = 3236, + [3237] = 3174, [3238] = 3238, [3239] = 3239, [3240] = 3240, - [3241] = 3241, - [3242] = 3187, - [3243] = 3160, + [3241] = 1457, + [3242] = 3215, + [3243] = 3243, [3244] = 3244, - [3245] = 3217, - [3246] = 3161, - [3247] = 3164, - [3248] = 3186, - [3249] = 3158, + [3245] = 3245, + [3246] = 3214, + [3247] = 3247, + [3248] = 3166, + [3249] = 3249, [3250] = 3173, [3251] = 3175, - [3252] = 3161, - [3253] = 3175, - [3254] = 3241, + [3252] = 3176, + [3253] = 3253, + [3254] = 3254, [3255] = 3255, - [3256] = 3203, - [3257] = 3184, + [3256] = 3256, + [3257] = 3257, [3258] = 3258, - [3259] = 3170, - [3260] = 3260, - [3261] = 3261, + [3259] = 3192, + [3260] = 3197, + [3261] = 3210, [3262] = 3262, - [3263] = 3217, - [3264] = 3264, + [3263] = 3214, + [3264] = 3211, [3265] = 3173, - [3266] = 3161, - [3267] = 3175, + [3266] = 3175, + [3267] = 3176, [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 3178, + [3269] = 3175, + [3270] = 3249, + [3271] = 3271, [3272] = 3272, - [3273] = 3217, - [3274] = 3173, - [3275] = 3161, - [3276] = 3175, - [3277] = 3180, - [3278] = 3278, - [3279] = 3229, - [3280] = 3217, - [3281] = 3173, - [3282] = 3161, - [3283] = 3175, - [3284] = 3217, - [3285] = 3161, - [3286] = 3175, - [3287] = 3217, - [3288] = 3161, - [3289] = 3175, - [3290] = 3217, - [3291] = 3161, - [3292] = 3175, - [3293] = 3217, - [3294] = 3161, - [3295] = 3175, - [3296] = 3173, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3209, + [3273] = 3273, + [3274] = 1529, + [3275] = 3275, + [3276] = 3276, + [3277] = 3214, + [3278] = 3173, + [3279] = 3175, + [3280] = 3176, + [3281] = 3281, + [3282] = 3282, + [3283] = 3272, + [3284] = 3172, + [3285] = 3285, + [3286] = 3214, + [3287] = 3173, + [3288] = 3175, + [3289] = 3176, + [3290] = 3214, + [3291] = 3175, + [3292] = 3176, + [3293] = 3214, + [3294] = 3175, + [3295] = 3176, + [3296] = 3214, + [3297] = 3175, + [3298] = 3176, + [3299] = 3214, + [3300] = 3175, + [3301] = 3176, + [3302] = 3302, [3303] = 3303, - [3304] = 3270, - [3305] = 1117, - [3306] = 1118, - [3307] = 3232, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, [3308] = 3308, - [3309] = 3190, + [3309] = 3163, [3310] = 3310, - [3311] = 3238, - [3312] = 3178, - [3313] = 3313, - [3314] = 3314, - [3315] = 3225, + [3311] = 3273, + [3312] = 3312, + [3313] = 3176, + [3314] = 3184, + [3315] = 3315, [3316] = 3316, - [3317] = 3317, - [3318] = 3193, - [3319] = 3317, - [3320] = 3211, - [3321] = 3200, + [3317] = 1127, + [3318] = 1132, + [3319] = 3201, + [3320] = 3276, + [3321] = 3321, [3322] = 3322, - [3323] = 3190, - [3324] = 3314, + [3323] = 3323, + [3324] = 3158, [3325] = 3325, - [3326] = 3326, - [3327] = 3327, + [3326] = 3218, + [3327] = 3177, [3328] = 3328, - [3329] = 3240, - [3330] = 3330, - [3331] = 3331, - [3332] = 3332, - [3333] = 3216, - [3334] = 3334, - [3335] = 3171, + [3329] = 1470, + [3330] = 1471, + [3331] = 3306, + [3332] = 3312, + [3333] = 3333, + [3334] = 3182, + [3335] = 3166, [3336] = 3336, - [3337] = 3173, - [3338] = 3168, - [3339] = 3339, - [3340] = 3255, - [3341] = 3300, - [3342] = 3239, - [3343] = 3159, - [3344] = 3261, - [3345] = 1476, - [3346] = 3346, - [3347] = 3310, - [3348] = 3316, - [3349] = 3299, - [3350] = 3298, - [3351] = 3217, - [3352] = 3346, - [3353] = 3331, - [3354] = 3204, - [3355] = 3207, - [3356] = 3230, + [3337] = 3190, + [3338] = 3338, + [3339] = 3243, + [3340] = 3165, + [3341] = 3341, + [3342] = 3188, + [3343] = 3244, + [3344] = 3195, + [3345] = 3208, + [3346] = 3322, + [3347] = 3245, + [3348] = 3348, + [3349] = 3349, + [3350] = 3215, + [3351] = 3351, + [3352] = 3247, + [3353] = 3353, + [3354] = 3304, + [3355] = 3205, + [3356] = 3356, [3357] = 3231, - [3358] = 3262, - [3359] = 3327, + [3358] = 3285, + [3359] = 3302, [3360] = 3360, - [3361] = 3184, - [3362] = 3268, - [3363] = 3363, - [3364] = 3189, - [3365] = 3365, - [3366] = 3360, - [3367] = 3330, - [3368] = 3301, - [3369] = 3369, - [3370] = 3238, - [3371] = 3371, - [3372] = 3372, - [3373] = 3332, - [3374] = 3175, - [3375] = 3157, - [3376] = 1507, - [3377] = 3217, - [3378] = 3308, + [3361] = 3239, + [3362] = 3362, + [3363] = 3351, + [3364] = 3353, + [3365] = 3362, + [3366] = 3366, + [3367] = 3366, + [3368] = 1479, + [3369] = 3305, + [3370] = 3370, + [3371] = 3281, + [3372] = 3218, + [3373] = 3198, + [3374] = 3214, + [3375] = 3210, + [3376] = 3316, + [3377] = 3310, + [3378] = 3316, [3379] = 3379, - [3380] = 3301, + [3380] = 3328, [3381] = 3381, - [3382] = 3270, - [3383] = 1117, - [3384] = 1118, - [3385] = 3328, - [3386] = 3308, - [3387] = 3223, - [3388] = 3193, - [3389] = 3389, - [3390] = 3390, + [3382] = 3159, + [3383] = 3383, + [3384] = 3348, + [3385] = 3215, + [3386] = 3356, + [3387] = 3169, + [3388] = 3111, + [3389] = 3123, + [3390] = 3173, [3391] = 3391, [3392] = 3392, - [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3173, + [3393] = 3312, + [3394] = 1127, + [3395] = 1132, + [3396] = 3201, [3397] = 3397, - [3398] = 3301, - [3399] = 3218, - [3400] = 3308, - [3401] = 1526, - [3402] = 1421, - [3403] = 3301, - [3404] = 3308, - [3405] = 3405, - [3406] = 3406, - [3407] = 3195, - [3408] = 3408, - [3409] = 3191, - [3410] = 3157, - [3411] = 3216, - [3412] = 3270, - [3413] = 3260, - [3414] = 3300, - [3415] = 3160, - [3416] = 3219, - [3417] = 3158, - [3418] = 3193, - [3419] = 3178, + [3398] = 3166, + [3399] = 3399, + [3400] = 3328, + [3401] = 3193, + [3402] = 3240, + [3403] = 3403, + [3404] = 3312, + [3405] = 3201, + [3406] = 3397, + [3407] = 3312, + [3408] = 3201, + [3409] = 3169, + [3410] = 3349, + [3411] = 3338, + [3412] = 3234, + [3413] = 3383, + [3414] = 3170, + [3415] = 3316, + [3416] = 3159, + [3417] = 3171, + [3418] = 3238, + [3419] = 3403, [3420] = 3420, - [3421] = 3395, - [3422] = 3185, - [3423] = 3393, + [3421] = 3360, + [3422] = 3328, + [3423] = 3162, [3424] = 3424, - [3425] = 3334, - [3426] = 3214, - [3427] = 3336, - [3428] = 3428, - [3429] = 3164, - [3430] = 3389, - [3431] = 3167, - [3432] = 3264, - [3433] = 3240, - [3434] = 1456, - [3435] = 3216, - [3436] = 3182, - [3437] = 3180, - [3438] = 3172, - [3439] = 3217, - [3440] = 3408, - [3441] = 3260, - [3442] = 3182, - [3443] = 3260, - [3444] = 3182, - [3445] = 3158, - [3446] = 3446, - [3447] = 3428, - [3448] = 3270, - [3449] = 3371, - [3450] = 3180, - [3451] = 3451, - [3452] = 3408, - [3453] = 3446, - [3454] = 3424, - [3455] = 3190, - [3456] = 3197, - [3457] = 3313, - [3458] = 3458, + [3425] = 3336, + [3426] = 3216, + [3427] = 3282, + [3428] = 3253, + [3429] = 3221, + [3430] = 3194, + [3431] = 3200, + [3432] = 3173, + [3433] = 3230, + [3434] = 3158, + [3435] = 3173, + [3436] = 3341, + [3437] = 3175, + [3438] = 3234, + [3439] = 3238, + [3440] = 3208, + [3441] = 3238, + [3442] = 3158, + [3443] = 3159, + [3444] = 3254, + [3445] = 3215, + [3446] = 3176, + [3447] = 3315, + [3448] = 3230, + [3449] = 3449, + [3450] = 3163, + [3451] = 3255, + [3452] = 3281, + [3453] = 3218, + [3454] = 3225, + [3455] = 3194, + [3456] = 3214, + [3457] = 3457, + [3458] = 3316, [3459] = 3459, - [3460] = 3460, + [3460] = 3163, [3461] = 3461, [3462] = 3462, [3463] = 3463, @@ -7457,7 +7457,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3468] = 3468, [3469] = 3469, [3470] = 3470, - [3471] = 3471, + [3471] = 3466, [3472] = 3472, [3473] = 3473, [3474] = 3474, @@ -7473,304 +7473,306 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3484] = 3484, [3485] = 3485, [3486] = 3486, - [3487] = 3487, + [3487] = 153, [3488] = 3488, - [3489] = 3488, - [3490] = 3490, + [3489] = 3489, + [3490] = 3472, [3491] = 3491, [3492] = 3492, [3493] = 3493, [3494] = 3494, [3495] = 3495, - [3496] = 3496, + [3496] = 3482, [3497] = 3497, [3498] = 3498, - [3499] = 3469, - [3500] = 3500, - [3501] = 3501, + [3499] = 3499, + [3500] = 3484, + [3501] = 3491, [3502] = 3502, [3503] = 3503, - [3504] = 3471, + [3504] = 3504, [3505] = 3505, [3506] = 3506, - [3507] = 3507, - [3508] = 3508, + [3507] = 3474, + [3508] = 3481, [3509] = 3509, [3510] = 3510, [3511] = 3511, - [3512] = 3492, - [3513] = 3513, - [3514] = 3514, + [3512] = 3512, + [3513] = 3468, + [3514] = 3467, [3515] = 3515, - [3516] = 3516, + [3516] = 3489, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 178, - [3521] = 3490, + [3520] = 3520, + [3521] = 3521, [3522] = 3522, - [3523] = 3500, + [3523] = 3464, [3524] = 3524, [3525] = 3525, [3526] = 3526, - [3527] = 3459, - [3528] = 3459, - [3529] = 3529, - [3530] = 3530, - [3531] = 3503, + [3527] = 3506, + [3528] = 3472, + [3529] = 3522, + [3530] = 3472, + [3531] = 3531, [3532] = 3532, [3533] = 3533, - [3534] = 3534, + [3534] = 3467, [3535] = 3535, - [3536] = 3500, - [3537] = 3488, + [3536] = 3536, + [3537] = 3537, [3538] = 3538, [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3478, + [3542] = 3542, [3543] = 3543, [3544] = 3544, [3545] = 3545, - [3546] = 3546, - [3547] = 3505, - [3548] = 3473, - [3549] = 3488, - [3550] = 3550, + [3546] = 3474, + [3547] = 3472, + [3548] = 3548, + [3549] = 3498, + [3550] = 3480, [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3492, - [3555] = 3555, + [3554] = 3554, + [3555] = 157, [3556] = 3556, [3557] = 3557, - [3558] = 3492, + [3558] = 3558, [3559] = 3559, - [3560] = 3468, + [3560] = 3560, [3561] = 3561, - [3562] = 3562, - [3563] = 3476, + [3562] = 3470, + [3563] = 3563, [3564] = 3564, - [3565] = 3562, + [3565] = 3481, [3566] = 3566, - [3567] = 3463, + [3567] = 3567, [3568] = 3568, - [3569] = 3569, + [3569] = 3560, [3570] = 3570, [3571] = 3571, - [3572] = 3572, - [3573] = 3515, - [3574] = 3574, - [3575] = 3488, - [3576] = 3576, - [3577] = 3487, - [3578] = 3578, - [3579] = 3484, - [3580] = 3469, + [3572] = 3568, + [3573] = 3573, + [3574] = 3499, + [3575] = 3575, + [3576] = 3478, + [3577] = 3491, + [3578] = 3511, + [3579] = 3502, + [3580] = 3580, [3581] = 3581, [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3543, + [3583] = 3531, + [3584] = 3532, + [3585] = 3585, [3586] = 3586, - [3587] = 3587, - [3588] = 3477, - [3589] = 3460, - [3590] = 3461, - [3591] = 3507, - [3592] = 3503, - [3593] = 3583, - [3594] = 3594, - [3595] = 3595, - [3596] = 3491, - [3597] = 3493, - [3598] = 3576, - [3599] = 3486, - [3600] = 3472, - [3601] = 3601, - [3602] = 3602, - [3603] = 3603, - [3604] = 3557, + [3587] = 3512, + [3588] = 3588, + [3589] = 3589, + [3590] = 3590, + [3591] = 3591, + [3592] = 3590, + [3593] = 3476, + [3594] = 3505, + [3595] = 3557, + [3596] = 3596, + [3597] = 3542, + [3598] = 3475, + [3599] = 3558, + [3600] = 3600, + [3601] = 3581, + [3602] = 3591, + [3603] = 3502, + [3604] = 3492, [3605] = 3605, - [3606] = 3545, + [3606] = 3606, [3607] = 3607, - [3608] = 3608, - [3609] = 3510, - [3610] = 3610, - [3611] = 3476, - [3612] = 3477, - [3613] = 3478, - [3614] = 3614, - [3615] = 3480, - [3616] = 3616, - [3617] = 3578, - [3618] = 3607, - [3619] = 3468, + [3608] = 3541, + [3609] = 3609, + [3610] = 3466, + [3611] = 3611, + [3612] = 3556, + [3613] = 3560, + [3614] = 3537, + [3615] = 3478, + [3616] = 3479, + [3617] = 3480, + [3618] = 3618, + [3619] = 3482, [3620] = 3620, - [3621] = 3621, - [3622] = 3519, - [3623] = 3583, - [3624] = 3543, - [3625] = 3610, - [3626] = 3533, + [3621] = 3582, + [3622] = 3622, + [3623] = 3623, + [3624] = 3474, + [3625] = 3625, + [3626] = 3568, [3627] = 3627, - [3628] = 3461, + [3628] = 3589, [3629] = 3629, - [3630] = 3518, - [3631] = 3594, - [3632] = 3516, - [3633] = 3553, - [3634] = 3557, + [3630] = 3630, + [3631] = 3505, + [3632] = 3632, + [3633] = 3633, + [3634] = 3475, [3635] = 3635, - [3636] = 3636, - [3637] = 3583, - [3638] = 3638, - [3639] = 3477, - [3640] = 3480, - [3641] = 3641, - [3642] = 3642, - [3643] = 3467, - [3644] = 3517, - [3645] = 3543, - [3646] = 3594, - [3647] = 3492, - [3648] = 3557, - [3649] = 3649, - [3650] = 3650, - [3651] = 3480, - [3652] = 3543, - [3653] = 3594, - [3654] = 3557, - [3655] = 3543, - [3656] = 3480, - [3657] = 3594, - [3658] = 3557, - [3659] = 3480, - [3660] = 3594, - [3661] = 3594, - [3662] = 3594, - [3663] = 3594, - [3664] = 3594, - [3665] = 3530, - [3666] = 3638, - [3667] = 3541, - [3668] = 3668, - [3669] = 3650, - [3670] = 3641, - [3671] = 3498, - [3672] = 3616, - [3673] = 3629, - [3674] = 3503, - [3675] = 3497, - [3676] = 3546, - [3677] = 3532, - [3678] = 3574, + [3636] = 3533, + [3637] = 3541, + [3638] = 3512, + [3639] = 3552, + [3640] = 3640, + [3641] = 3589, + [3642] = 3479, + [3643] = 3482, + [3644] = 3553, + [3645] = 3495, + [3646] = 3646, + [3647] = 3647, + [3648] = 3589, + [3649] = 3475, + [3650] = 3606, + [3651] = 3541, + [3652] = 3589, + [3653] = 3653, + [3654] = 3482, + [3655] = 3589, + [3656] = 3475, + [3657] = 3541, + [3658] = 3627, + [3659] = 3482, + [3660] = 3475, + [3661] = 3541, + [3662] = 3482, + [3663] = 3475, + [3664] = 3475, + [3665] = 3475, + [3666] = 3475, + [3667] = 3475, + [3668] = 3479, + [3669] = 3669, + [3670] = 3509, + [3671] = 3623, + [3672] = 3503, + [3673] = 3519, + [3674] = 3674, + [3675] = 3675, + [3676] = 3551, + [3677] = 3465, + [3678] = 3559, [3679] = 3679, - [3680] = 3621, - [3681] = 3501, + [3680] = 3463, + [3681] = 3633, [3682] = 3682, - [3683] = 3529, - [3684] = 3525, - [3685] = 3679, - [3686] = 3686, - [3687] = 3687, + [3683] = 3683, + [3684] = 3538, + [3685] = 3618, + [3686] = 3554, + [3687] = 3539, [3688] = 3688, - [3689] = 3576, - [3690] = 3488, - [3691] = 3559, - [3692] = 3460, - [3693] = 3693, - [3694] = 181, - [3695] = 3461, - [3696] = 3473, + [3689] = 3675, + [3690] = 3690, + [3691] = 3515, + [3692] = 3476, + [3693] = 3580, + [3694] = 3504, + [3695] = 3695, + [3696] = 3505, [3697] = 3697, [3698] = 3698, - [3699] = 3603, - [3700] = 3465, - [3701] = 3701, - [3702] = 3682, - [3703] = 3701, + [3699] = 3699, + [3700] = 3461, + [3701] = 3625, + [3702] = 3477, + [3703] = 3586, [3704] = 3704, - [3705] = 3705, + [3705] = 3510, [3706] = 3706, - [3707] = 3480, - [3708] = 3687, - [3709] = 3492, - [3710] = 3514, - [3711] = 3556, - [3712] = 3594, - [3713] = 3608, - [3714] = 3476, - [3715] = 3715, - [3716] = 3649, - [3717] = 3704, - [3718] = 3526, - [3719] = 3719, - [3720] = 3720, - [3721] = 3495, - [3722] = 3584, - [3723] = 3494, - [3724] = 3724, - [3725] = 3472, - [3726] = 3636, - [3727] = 3511, - [3728] = 3505, - [3729] = 3650, - [3730] = 3641, - [3731] = 3546, - [3732] = 3532, - [3733] = 3602, - [3734] = 3473, - [3735] = 3650, - [3736] = 3532, - [3737] = 3459, - [3738] = 3557, - [3739] = 3532, - [3740] = 3532, - [3741] = 3532, - [3742] = 3742, - [3743] = 3642, - [3744] = 3744, - [3745] = 3571, - [3746] = 3496, - [3747] = 3572, - [3748] = 3748, - [3749] = 3749, - [3750] = 3506, - [3751] = 3515, - [3752] = 3724, - [3753] = 3544, - [3754] = 3485, - [3755] = 3601, - [3756] = 3698, - [3757] = 3594, - [3758] = 3614, - [3759] = 3759, - [3760] = 3482, - [3761] = 3587, + [3707] = 3707, + [3708] = 3548, + [3709] = 3588, + [3710] = 3469, + [3711] = 3679, + [3712] = 3466, + [3713] = 3566, + [3714] = 3573, + [3715] = 3517, + [3716] = 3716, + [3717] = 3632, + [3718] = 3571, + [3719] = 3542, + [3720] = 3570, + [3721] = 3704, + [3722] = 3475, + [3723] = 3723, + [3724] = 3521, + [3725] = 3478, + [3726] = 3605, + [3727] = 3635, + [3728] = 3629, + [3729] = 3729, + [3730] = 3485, + [3731] = 3669, + [3732] = 3474, + [3733] = 3503, + [3734] = 3519, + [3735] = 3679, + [3736] = 3463, + [3737] = 3491, + [3738] = 3738, + [3739] = 3503, + [3740] = 3463, + [3741] = 3492, + [3742] = 3630, + [3743] = 3463, + [3744] = 3463, + [3745] = 3463, + [3746] = 3467, + [3747] = 3707, + [3748] = 3606, + [3749] = 3515, + [3750] = 3502, + [3751] = 3751, + [3752] = 3541, + [3753] = 3494, + [3754] = 3543, + [3755] = 3472, + [3756] = 3756, + [3757] = 3567, + [3758] = 3758, + [3759] = 3611, + [3760] = 3674, + [3761] = 3756, [3762] = 3762, - [3763] = 3742, - [3764] = 3620, - [3765] = 3607, - [3766] = 3602, - [3767] = 3706, - [3768] = 3686, - [3769] = 3475, - [3770] = 3550, - [3771] = 3595, - [3772] = 3561, - [3773] = 3534, - [3774] = 3602, - [3775] = 3586, - [3776] = 3478, - [3777] = 3469, - [3778] = 3778, + [3763] = 3474, + [3764] = 3682, + [3765] = 3620, + [3766] = 3766, + [3767] = 3766, + [3768] = 3768, + [3769] = 3690, + [3770] = 3611, + [3771] = 3524, + [3772] = 3545, + [3773] = 3698, + [3774] = 3774, + [3775] = 3568, + [3776] = 3606, + [3777] = 3699, + [3778] = 3480, [3779] = 3779, [3780] = 3780, [3781] = 3781, [3782] = 3782, [3783] = 3783, [3784] = 3784, + [3785] = 3785, + [3786] = 3786, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -8550,6 +8552,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 98, '.', 135, '/', 100, + ':', 84, ';', 75, '<', 131, '=', 124, @@ -10527,55 +10530,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 13, .external_lex_state = 2}, [139] = {.lex_state = 13, .external_lex_state = 2}, [140] = {.lex_state = 13, .external_lex_state = 2}, - [141] = {.lex_state = 13, .external_lex_state = 2}, + [141] = {.lex_state = 4, .external_lex_state = 2}, [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 2}, + [143] = {.lex_state = 13, .external_lex_state = 2}, [144] = {.lex_state = 13, .external_lex_state = 2}, [145] = {.lex_state = 13, .external_lex_state = 2}, [146] = {.lex_state = 4, .external_lex_state = 2}, [147] = {.lex_state = 4, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 4, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, + [148] = {.lex_state = 13, .external_lex_state = 2}, + [149] = {.lex_state = 13, .external_lex_state = 2}, + [150] = {.lex_state = 13, .external_lex_state = 2}, [151] = {.lex_state = 4, .external_lex_state = 2}, [152] = {.lex_state = 4, .external_lex_state = 2}, - [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 4, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, + [153] = {.lex_state = 4, .external_lex_state = 2}, + [154] = {.lex_state = 13, .external_lex_state = 2}, + [155] = {.lex_state = 13, .external_lex_state = 2}, + [156] = {.lex_state = 13, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, + [158] = {.lex_state = 4, .external_lex_state = 2}, [159] = {.lex_state = 4, .external_lex_state = 2}, [160] = {.lex_state = 13, .external_lex_state = 2}, [161] = {.lex_state = 13, .external_lex_state = 2}, [162] = {.lex_state = 13, .external_lex_state = 2}, - [163] = {.lex_state = 4, .external_lex_state = 2}, - [164] = {.lex_state = 13, .external_lex_state = 2}, + [163] = {.lex_state = 6, .external_lex_state = 2}, + [164] = {.lex_state = 4, .external_lex_state = 2}, [165] = {.lex_state = 4, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, - [167] = {.lex_state = 4, .external_lex_state = 2}, - [168] = {.lex_state = 13, .external_lex_state = 2}, + [167] = {.lex_state = 13, .external_lex_state = 2}, + [168] = {.lex_state = 4, .external_lex_state = 2}, [169] = {.lex_state = 4, .external_lex_state = 2}, [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 6, .external_lex_state = 2}, + [171] = {.lex_state = 4, .external_lex_state = 2}, + [172] = {.lex_state = 4, .external_lex_state = 2}, [173] = {.lex_state = 13, .external_lex_state = 2}, [174] = {.lex_state = 13, .external_lex_state = 2}, - [175] = {.lex_state = 13, .external_lex_state = 2}, - [176] = {.lex_state = 13, .external_lex_state = 2}, + [175] = {.lex_state = 4, .external_lex_state = 2}, + [176] = {.lex_state = 4, .external_lex_state = 2}, [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, + [178] = {.lex_state = 13, .external_lex_state = 2}, [179] = {.lex_state = 13, .external_lex_state = 2}, - [180] = {.lex_state = 13, .external_lex_state = 2}, + [180] = {.lex_state = 4, .external_lex_state = 2}, [181] = {.lex_state = 4, .external_lex_state = 2}, - [182] = {.lex_state = 4, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 13, .external_lex_state = 2}, + [182] = {.lex_state = 6, .external_lex_state = 2}, + [183] = {.lex_state = 13, .external_lex_state = 2}, + [184] = {.lex_state = 13, .external_lex_state = 2}, + [185] = {.lex_state = 4, .external_lex_state = 2}, [186] = {.lex_state = 13, .external_lex_state = 2}, [187] = {.lex_state = 13, .external_lex_state = 2}, [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 13, .external_lex_state = 2}, + [189] = {.lex_state = 4, .external_lex_state = 2}, [190] = {.lex_state = 13, .external_lex_state = 2}, [191] = {.lex_state = 13, .external_lex_state = 2}, [192] = {.lex_state = 13, .external_lex_state = 2}, @@ -10583,61 +10586,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 13, .external_lex_state = 2}, [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 6, .external_lex_state = 2}, + [197] = {.lex_state = 13, .external_lex_state = 2}, + [198] = {.lex_state = 13, .external_lex_state = 2}, [199] = {.lex_state = 13, .external_lex_state = 2}, [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 13, .external_lex_state = 2}, + [201] = {.lex_state = 6, .external_lex_state = 2}, [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 13, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, + [204] = {.lex_state = 13, .external_lex_state = 2}, [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 6, .external_lex_state = 2}, + [206] = {.lex_state = 13, .external_lex_state = 2}, + [207] = {.lex_state = 13, .external_lex_state = 2}, [208] = {.lex_state = 6, .external_lex_state = 2}, - [209] = {.lex_state = 6, .external_lex_state = 2}, + [209] = {.lex_state = 13, .external_lex_state = 2}, [210] = {.lex_state = 6, .external_lex_state = 2}, [211] = {.lex_state = 6, .external_lex_state = 2}, - [212] = {.lex_state = 13, .external_lex_state = 2}, - [213] = {.lex_state = 13, .external_lex_state = 2}, - [214] = {.lex_state = 13, .external_lex_state = 2}, - [215] = {.lex_state = 13, .external_lex_state = 2}, - [216] = {.lex_state = 15, .external_lex_state = 2}, + [212] = {.lex_state = 6, .external_lex_state = 2}, + [213] = {.lex_state = 6, .external_lex_state = 2}, + [214] = {.lex_state = 6, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 13, .external_lex_state = 2}, - [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 13, .external_lex_state = 2}, + [218] = {.lex_state = 15, .external_lex_state = 2}, + [219] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 15, .external_lex_state = 2}, + [222] = {.lex_state = 15, .external_lex_state = 2}, [223] = {.lex_state = 15, .external_lex_state = 2}, [224] = {.lex_state = 13, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 12, .external_lex_state = 2}, - [227] = {.lex_state = 12, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 15, .external_lex_state = 2}, - [230] = {.lex_state = 15, .external_lex_state = 2}, - [231] = {.lex_state = 15, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, + [225] = {.lex_state = 15, .external_lex_state = 2}, + [226] = {.lex_state = 15, .external_lex_state = 2}, + [227] = {.lex_state = 15, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, + [229] = {.lex_state = 13, .external_lex_state = 2}, + [230] = {.lex_state = 13, .external_lex_state = 2}, + [231] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 12, .external_lex_state = 2}, [233] = {.lex_state = 13, .external_lex_state = 2}, [234] = {.lex_state = 12, .external_lex_state = 2}, - [235] = {.lex_state = 15, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 15, .external_lex_state = 2}, - [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 13, .external_lex_state = 2}, + [237] = {.lex_state = 13, .external_lex_state = 2}, + [238] = {.lex_state = 12, .external_lex_state = 2}, + [239] = {.lex_state = 12, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, - [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 13, .external_lex_state = 2}, - [243] = {.lex_state = 15, .external_lex_state = 2}, - [244] = {.lex_state = 12, .external_lex_state = 2}, + [241] = {.lex_state = 12, .external_lex_state = 2}, + [242] = {.lex_state = 12, .external_lex_state = 2}, + [243] = {.lex_state = 13, .external_lex_state = 2}, + [244] = {.lex_state = 13, .external_lex_state = 2}, [245] = {.lex_state = 15, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 12, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, + [246] = {.lex_state = 15, .external_lex_state = 2}, + [247] = {.lex_state = 13, .external_lex_state = 2}, + [248] = {.lex_state = 13, .external_lex_state = 2}, [249] = {.lex_state = 13, .external_lex_state = 2}, [250] = {.lex_state = 15, .external_lex_state = 2}, - [251] = {.lex_state = 12, .external_lex_state = 2}, + [251] = {.lex_state = 15, .external_lex_state = 2}, [252] = {.lex_state = 15, .external_lex_state = 2}, [253] = {.lex_state = 12, .external_lex_state = 2}, [254] = {.lex_state = 12, .external_lex_state = 2}, @@ -10678,7 +10681,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [289] = {.lex_state = 13, .external_lex_state = 2}, [290] = {.lex_state = 13, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, + [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, [294] = {.lex_state = 13, .external_lex_state = 2}, [295] = {.lex_state = 13, .external_lex_state = 2}, @@ -10696,16 +10699,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [307] = {.lex_state = 13, .external_lex_state = 2}, [308] = {.lex_state = 13, .external_lex_state = 2}, [309] = {.lex_state = 13, .external_lex_state = 2}, - [310] = {.lex_state = 13, .external_lex_state = 2}, + [310] = {.lex_state = 14, .external_lex_state = 2}, [311] = {.lex_state = 13, .external_lex_state = 2}, [312] = {.lex_state = 13, .external_lex_state = 2}, [313] = {.lex_state = 13, .external_lex_state = 2}, [314] = {.lex_state = 13, .external_lex_state = 2}, [315] = {.lex_state = 13, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 13, .external_lex_state = 2}, + [317] = {.lex_state = 14, .external_lex_state = 2}, [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 71, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, [320] = {.lex_state = 13, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, @@ -10719,15 +10722,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [330] = {.lex_state = 13, .external_lex_state = 2}, [331] = {.lex_state = 13, .external_lex_state = 2}, [332] = {.lex_state = 13, .external_lex_state = 2}, - [333] = {.lex_state = 13, .external_lex_state = 2}, + [333] = {.lex_state = 14, .external_lex_state = 2}, [334] = {.lex_state = 13, .external_lex_state = 2}, [335] = {.lex_state = 13, .external_lex_state = 2}, [336] = {.lex_state = 13, .external_lex_state = 2}, [337] = {.lex_state = 13, .external_lex_state = 2}, [338] = {.lex_state = 13, .external_lex_state = 2}, - [339] = {.lex_state = 13, .external_lex_state = 2}, + [339] = {.lex_state = 71, .external_lex_state = 2}, [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 13, .external_lex_state = 2}, + [341] = {.lex_state = 12, .external_lex_state = 2}, [342] = {.lex_state = 13, .external_lex_state = 2}, [343] = {.lex_state = 13, .external_lex_state = 2}, [344] = {.lex_state = 13, .external_lex_state = 2}, @@ -10740,13 +10743,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 13, .external_lex_state = 2}, [352] = {.lex_state = 13, .external_lex_state = 2}, [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 14, .external_lex_state = 2}, + [354] = {.lex_state = 13, .external_lex_state = 2}, [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 14, .external_lex_state = 2}, + [356] = {.lex_state = 13, .external_lex_state = 2}, [357] = {.lex_state = 13, .external_lex_state = 2}, [358] = {.lex_state = 13, .external_lex_state = 2}, [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 14, .external_lex_state = 2}, + [360] = {.lex_state = 13, .external_lex_state = 2}, [361] = {.lex_state = 13, .external_lex_state = 2}, [362] = {.lex_state = 13, .external_lex_state = 2}, [363] = {.lex_state = 13, .external_lex_state = 2}, @@ -10793,21 +10796,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, - [407] = {.lex_state = 12, .external_lex_state = 2}, + [407] = {.lex_state = 71, .external_lex_state = 2}, [408] = {.lex_state = 71, .external_lex_state = 2}, [409] = {.lex_state = 71, .external_lex_state = 2}, [410] = {.lex_state = 71, .external_lex_state = 2}, [411] = {.lex_state = 71, .external_lex_state = 2}, [412] = {.lex_state = 71, .external_lex_state = 2}, [413] = {.lex_state = 71, .external_lex_state = 2}, - [414] = {.lex_state = 71, .external_lex_state = 2}, - [415] = {.lex_state = 71, .external_lex_state = 2}, + [414] = {.lex_state = 12, .external_lex_state = 2}, + [415] = {.lex_state = 12, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 71, .external_lex_state = 2}, [418] = {.lex_state = 71, .external_lex_state = 2}, - [419] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 71, .external_lex_state = 2}, [420] = {.lex_state = 71, .external_lex_state = 2}, - [421] = {.lex_state = 71, .external_lex_state = 2}, + [421] = {.lex_state = 12, .external_lex_state = 2}, [422] = {.lex_state = 71, .external_lex_state = 2}, [423] = {.lex_state = 71, .external_lex_state = 2}, [424] = {.lex_state = 14, .external_lex_state = 2}, @@ -10843,29 +10846,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [454] = {.lex_state = 13, .external_lex_state = 2}, [455] = {.lex_state = 13, .external_lex_state = 2}, [456] = {.lex_state = 14, .external_lex_state = 2}, - [457] = {.lex_state = 14, .external_lex_state = 2}, + [457] = {.lex_state = 5, .external_lex_state = 2}, [458] = {.lex_state = 14, .external_lex_state = 2}, - [459] = {.lex_state = 5, .external_lex_state = 2}, + [459] = {.lex_state = 14, .external_lex_state = 2}, [460] = {.lex_state = 14, .external_lex_state = 2}, [461] = {.lex_state = 5, .external_lex_state = 2}, [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, + [463] = {.lex_state = 14, .external_lex_state = 2}, [464] = {.lex_state = 5, .external_lex_state = 2}, [465] = {.lex_state = 5, .external_lex_state = 2}, [466] = {.lex_state = 14, .external_lex_state = 2}, [467] = {.lex_state = 5, .external_lex_state = 2}, - [468] = {.lex_state = 14, .external_lex_state = 2}, + [468] = {.lex_state = 5, .external_lex_state = 2}, [469] = {.lex_state = 14, .external_lex_state = 2}, [470] = {.lex_state = 5, .external_lex_state = 2}, [471] = {.lex_state = 5, .external_lex_state = 2}, - [472] = {.lex_state = 14, .external_lex_state = 2}, + [472] = {.lex_state = 5, .external_lex_state = 2}, [473] = {.lex_state = 5, .external_lex_state = 2}, [474] = {.lex_state = 5, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, [476] = {.lex_state = 5, .external_lex_state = 2}, [477] = {.lex_state = 5, .external_lex_state = 2}, [478] = {.lex_state = 5, .external_lex_state = 2}, - [479] = {.lex_state = 5, .external_lex_state = 2}, + [479] = {.lex_state = 14, .external_lex_state = 2}, [480] = {.lex_state = 5, .external_lex_state = 2}, [481] = {.lex_state = 5, .external_lex_state = 2}, [482] = {.lex_state = 5, .external_lex_state = 2}, @@ -10938,7 +10941,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 73, .external_lex_state = 2}, [550] = {.lex_state = 73, .external_lex_state = 2}, [551] = {.lex_state = 73, .external_lex_state = 2}, - [552] = {.lex_state = 73, .external_lex_state = 2}, + [552] = {.lex_state = 14, .external_lex_state = 2}, [553] = {.lex_state = 73, .external_lex_state = 2}, [554] = {.lex_state = 73, .external_lex_state = 2}, [555] = {.lex_state = 73, .external_lex_state = 2}, @@ -10970,12 +10973,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 73, .external_lex_state = 2}, [582] = {.lex_state = 73, .external_lex_state = 2}, [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 23}, + [584] = {.lex_state = 73, .external_lex_state = 2}, [585] = {.lex_state = 73, .external_lex_state = 2}, [586] = {.lex_state = 73, .external_lex_state = 2}, [587] = {.lex_state = 73, .external_lex_state = 2}, [588] = {.lex_state = 73, .external_lex_state = 2}, - [589] = {.lex_state = 14, .external_lex_state = 2}, + [589] = {.lex_state = 73, .external_lex_state = 2}, [590] = {.lex_state = 73, .external_lex_state = 2}, [591] = {.lex_state = 73, .external_lex_state = 2}, [592] = {.lex_state = 73, .external_lex_state = 2}, @@ -11006,14 +11009,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 73, .external_lex_state = 2}, [618] = {.lex_state = 73, .external_lex_state = 2}, [619] = {.lex_state = 73, .external_lex_state = 2}, - [620] = {.lex_state = 73, .external_lex_state = 2}, + [620] = {.lex_state = 14, .external_lex_state = 2}, [621] = {.lex_state = 73, .external_lex_state = 2}, [622] = {.lex_state = 73, .external_lex_state = 2}, [623] = {.lex_state = 73, .external_lex_state = 2}, [624] = {.lex_state = 73, .external_lex_state = 2}, [625] = {.lex_state = 73, .external_lex_state = 2}, [626] = {.lex_state = 73, .external_lex_state = 2}, - [627] = {.lex_state = 14, .external_lex_state = 2}, + [627] = {.lex_state = 73, .external_lex_state = 2}, [628] = {.lex_state = 73, .external_lex_state = 2}, [629] = {.lex_state = 73, .external_lex_state = 2}, [630] = {.lex_state = 73, .external_lex_state = 2}, @@ -11025,7 +11028,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [636] = {.lex_state = 73, .external_lex_state = 2}, [637] = {.lex_state = 73, .external_lex_state = 2}, [638] = {.lex_state = 73, .external_lex_state = 2}, - [639] = {.lex_state = 73, .external_lex_state = 2}, + [639] = {.lex_state = 23}, [640] = {.lex_state = 73, .external_lex_state = 2}, [641] = {.lex_state = 73, .external_lex_state = 2}, [642] = {.lex_state = 73, .external_lex_state = 2}, @@ -11036,13 +11039,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [647] = {.lex_state = 73, .external_lex_state = 2}, [648] = {.lex_state = 73, .external_lex_state = 2}, [649] = {.lex_state = 73, .external_lex_state = 2}, - [650] = {.lex_state = 73, .external_lex_state = 2}, + [650] = {.lex_state = 14, .external_lex_state = 2}, [651] = {.lex_state = 73, .external_lex_state = 2}, [652] = {.lex_state = 73, .external_lex_state = 2}, [653] = {.lex_state = 73, .external_lex_state = 2}, [654] = {.lex_state = 73, .external_lex_state = 2}, [655] = {.lex_state = 73, .external_lex_state = 2}, - [656] = {.lex_state = 73, .external_lex_state = 2}, + [656] = {.lex_state = 23}, [657] = {.lex_state = 73, .external_lex_state = 2}, [658] = {.lex_state = 73, .external_lex_state = 2}, [659] = {.lex_state = 73, .external_lex_state = 2}, @@ -11050,7 +11053,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [661] = {.lex_state = 73, .external_lex_state = 2}, [662] = {.lex_state = 73, .external_lex_state = 2}, [663] = {.lex_state = 73, .external_lex_state = 2}, - [664] = {.lex_state = 23}, + [664] = {.lex_state = 73, .external_lex_state = 2}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, @@ -11058,25 +11061,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 73, .external_lex_state = 2}, [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, - [672] = {.lex_state = 23}, + [672] = {.lex_state = 73, .external_lex_state = 2}, [673] = {.lex_state = 73, .external_lex_state = 2}, [674] = {.lex_state = 73, .external_lex_state = 2}, [675] = {.lex_state = 73, .external_lex_state = 2}, - [676] = {.lex_state = 23}, + [676] = {.lex_state = 73, .external_lex_state = 2}, [677] = {.lex_state = 73, .external_lex_state = 2}, [678] = {.lex_state = 73, .external_lex_state = 2}, - [679] = {.lex_state = 14, .external_lex_state = 2}, - [680] = {.lex_state = 14, .external_lex_state = 2}, + [679] = {.lex_state = 23}, + [680] = {.lex_state = 73, .external_lex_state = 2}, [681] = {.lex_state = 73, .external_lex_state = 2}, [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, [684] = {.lex_state = 73, .external_lex_state = 2}, - [685] = {.lex_state = 73, .external_lex_state = 2}, - [686] = {.lex_state = 14, .external_lex_state = 2}, + [685] = {.lex_state = 23}, + [686] = {.lex_state = 73, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, [688] = {.lex_state = 73, .external_lex_state = 2}, [689] = {.lex_state = 73, .external_lex_state = 2}, - [690] = {.lex_state = 73, .external_lex_state = 2}, + [690] = {.lex_state = 14, .external_lex_state = 2}, [691] = {.lex_state = 73, .external_lex_state = 2}, [692] = {.lex_state = 73, .external_lex_state = 2}, [693] = {.lex_state = 73, .external_lex_state = 2}, @@ -11084,7 +11087,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [695] = {.lex_state = 73, .external_lex_state = 2}, [696] = {.lex_state = 73, .external_lex_state = 2}, [697] = {.lex_state = 73, .external_lex_state = 2}, - [698] = {.lex_state = 73, .external_lex_state = 2}, + [698] = {.lex_state = 14, .external_lex_state = 2}, [699] = {.lex_state = 73, .external_lex_state = 2}, [700] = {.lex_state = 73, .external_lex_state = 2}, [701] = {.lex_state = 73, .external_lex_state = 2}, @@ -11106,7 +11109,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [717] = {.lex_state = 73, .external_lex_state = 2}, [718] = {.lex_state = 73, .external_lex_state = 2}, [719] = {.lex_state = 73, .external_lex_state = 2}, - [720] = {.lex_state = 14, .external_lex_state = 2}, + [720] = {.lex_state = 73, .external_lex_state = 2}, [721] = {.lex_state = 73, .external_lex_state = 2}, [722] = {.lex_state = 73, .external_lex_state = 2}, [723] = {.lex_state = 73, .external_lex_state = 2}, @@ -11133,9 +11136,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 73, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, [746] = {.lex_state = 73, .external_lex_state = 2}, - [747] = {.lex_state = 23}, - [748] = {.lex_state = 73, .external_lex_state = 2}, - [749] = {.lex_state = 73, .external_lex_state = 2}, + [747] = {.lex_state = 73, .external_lex_state = 2}, + [748] = {.lex_state = 23}, + [749] = {.lex_state = 14, .external_lex_state = 2}, [750] = {.lex_state = 73, .external_lex_state = 2}, [751] = {.lex_state = 73, .external_lex_state = 2}, [752] = {.lex_state = 73, .external_lex_state = 2}, @@ -11178,19 +11181,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [789] = {.lex_state = 17}, [790] = {.lex_state = 17}, [791] = {.lex_state = 17}, - [792] = {.lex_state = 14, .external_lex_state = 2}, + [792] = {.lex_state = 17}, [793] = {.lex_state = 14, .external_lex_state = 2}, - [794] = {.lex_state = 17}, + [794] = {.lex_state = 14, .external_lex_state = 2}, [795] = {.lex_state = 14, .external_lex_state = 2}, [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 17}, - [798] = {.lex_state = 14, .external_lex_state = 2}, + [797] = {.lex_state = 14, .external_lex_state = 2}, + [798] = {.lex_state = 17}, [799] = {.lex_state = 14, .external_lex_state = 2}, [800] = {.lex_state = 14, .external_lex_state = 2}, [801] = {.lex_state = 14, .external_lex_state = 2}, [802] = {.lex_state = 14, .external_lex_state = 2}, [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 12, .external_lex_state = 2}, + [804] = {.lex_state = 14, .external_lex_state = 2}, [805] = {.lex_state = 14, .external_lex_state = 2}, [806] = {.lex_state = 14, .external_lex_state = 2}, [807] = {.lex_state = 14, .external_lex_state = 2}, @@ -11199,7 +11202,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [810] = {.lex_state = 14, .external_lex_state = 2}, [811] = {.lex_state = 14, .external_lex_state = 2}, [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 14, .external_lex_state = 2}, + [813] = {.lex_state = 12, .external_lex_state = 2}, [814] = {.lex_state = 14, .external_lex_state = 2}, [815] = {.lex_state = 14, .external_lex_state = 2}, [816] = {.lex_state = 14, .external_lex_state = 2}, @@ -11435,101 +11438,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1046] = {.lex_state = 17}, [1047] = {.lex_state = 17}, [1048] = {.lex_state = 17}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, + [1049] = {.lex_state = 17}, + [1050] = {.lex_state = 17}, [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 15, .external_lex_state = 2}, - [1053] = {.lex_state = 15, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 17}, - [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, + [1052] = {.lex_state = 13, .external_lex_state = 2}, + [1053] = {.lex_state = 13, .external_lex_state = 2}, + [1054] = {.lex_state = 15, .external_lex_state = 2}, + [1055] = {.lex_state = 15, .external_lex_state = 2}, + [1056] = {.lex_state = 13, .external_lex_state = 2}, + [1057] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 17}, [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 9}, - [1061] = {.lex_state = 8}, + [1060] = {.lex_state = 13, .external_lex_state = 2}, + [1061] = {.lex_state = 13, .external_lex_state = 2}, [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 8}, - [1064] = {.lex_state = 14, .external_lex_state = 2}, - [1065] = {.lex_state = 23}, - [1066] = {.lex_state = 23}, + [1063] = {.lex_state = 9}, + [1064] = {.lex_state = 8}, + [1065] = {.lex_state = 8}, + [1066] = {.lex_state = 8}, [1067] = {.lex_state = 23}, [1068] = {.lex_state = 23}, [1069] = {.lex_state = 23}, [1070] = {.lex_state = 23}, [1071] = {.lex_state = 23}, - [1072] = {.lex_state = 8}, - [1073] = {.lex_state = 23}, + [1072] = {.lex_state = 23}, + [1073] = {.lex_state = 14, .external_lex_state = 2}, [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 26}, - [1076] = {.lex_state = 17}, + [1075] = {.lex_state = 23}, + [1076] = {.lex_state = 23}, [1077] = {.lex_state = 17}, [1078] = {.lex_state = 8}, - [1079] = {.lex_state = 17}, - [1080] = {.lex_state = 8}, - [1081] = {.lex_state = 26}, + [1079] = {.lex_state = 26}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 8}, [1082] = {.lex_state = 8}, - [1083] = {.lex_state = 26}, + [1083] = {.lex_state = 17}, [1084] = {.lex_state = 8}, - [1085] = {.lex_state = 8}, - [1086] = {.lex_state = 8}, + [1085] = {.lex_state = 17}, + [1086] = {.lex_state = 26}, [1087] = {.lex_state = 8}, - [1088] = {.lex_state = 17}, - [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 8}, + [1088] = {.lex_state = 8}, + [1089] = {.lex_state = 8}, + [1090] = {.lex_state = 26}, [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 9}, - [1093] = {.lex_state = 9}, - [1094] = {.lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 14, .external_lex_state = 2}, + [1092] = {.lex_state = 26}, + [1093] = {.lex_state = 8}, + [1094] = {.lex_state = 17}, + [1095] = {.lex_state = 9}, + [1096] = {.lex_state = 17}, [1097] = {.lex_state = 9}, [1098] = {.lex_state = 17}, - [1099] = {.lex_state = 17}, + [1099] = {.lex_state = 9}, [1100] = {.lex_state = 9}, - [1101] = {.lex_state = 9}, - [1102] = {.lex_state = 17}, - [1103] = {.lex_state = 17}, - [1104] = {.lex_state = 9}, + [1101] = {.lex_state = 14, .external_lex_state = 2}, + [1102] = {.lex_state = 9}, + [1103] = {.lex_state = 14, .external_lex_state = 2}, + [1104] = {.lex_state = 17}, [1105] = {.lex_state = 9}, [1106] = {.lex_state = 23}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 9}, - [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, - [1111] = {.lex_state = 14, .external_lex_state = 2}, - [1112] = {.lex_state = 21}, - [1113] = {.lex_state = 14, .external_lex_state = 2}, + [1107] = {.lex_state = 23}, + [1108] = {.lex_state = 23}, + [1109] = {.lex_state = 23}, + [1110] = {.lex_state = 23}, + [1111] = {.lex_state = 23}, + [1112] = {.lex_state = 23}, + [1113] = {.lex_state = 23}, [1114] = {.lex_state = 23}, - [1115] = {.lex_state = 17}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 9}, - [1118] = {.lex_state = 9}, - [1119] = {.lex_state = 9}, - [1120] = {.lex_state = 23}, + [1115] = {.lex_state = 23}, + [1116] = {.lex_state = 23}, + [1117] = {.lex_state = 23}, + [1118] = {.lex_state = 23}, + [1119] = {.lex_state = 23}, + [1120] = {.lex_state = 17}, [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, + [1122] = {.lex_state = 23}, [1123] = {.lex_state = 9}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 9}, - [1126] = {.lex_state = 9}, - [1127] = {.lex_state = 21}, - [1128] = {.lex_state = 20}, - [1129] = {.lex_state = 9}, - [1130] = {.lex_state = 9}, - [1131] = {.lex_state = 20}, - [1132] = {.lex_state = 20}, - [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 9}, + [1124] = {.lex_state = 23}, + [1125] = {.lex_state = 12, .external_lex_state = 2}, + [1126] = {.lex_state = 23}, + [1127] = {.lex_state = 9}, + [1128] = {.lex_state = 23}, + [1129] = {.lex_state = 23}, + [1130] = {.lex_state = 23}, + [1131] = {.lex_state = 23}, + [1132] = {.lex_state = 9}, + [1133] = {.lex_state = 9}, + [1134] = {.lex_state = 23}, [1135] = {.lex_state = 23}, [1136] = {.lex_state = 23}, [1137] = {.lex_state = 23}, [1138] = {.lex_state = 23}, [1139] = {.lex_state = 23}, - [1140] = {.lex_state = 23}, - [1141] = {.lex_state = 23}, - [1142] = {.lex_state = 23}, - [1143] = {.lex_state = 23}, + [1140] = {.lex_state = 14, .external_lex_state = 2}, + [1141] = {.lex_state = 9}, + [1142] = {.lex_state = 20}, + [1143] = {.lex_state = 14, .external_lex_state = 2}, [1144] = {.lex_state = 23}, [1145] = {.lex_state = 23}, [1146] = {.lex_state = 23}, @@ -11537,27 +11540,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1148] = {.lex_state = 23}, [1149] = {.lex_state = 23}, [1150] = {.lex_state = 23}, - [1151] = {.lex_state = 8}, - [1152] = {.lex_state = 20}, - [1153] = {.lex_state = 20}, - [1154] = {.lex_state = 20}, - [1155] = {.lex_state = 20}, + [1151] = {.lex_state = 23}, + [1152] = {.lex_state = 23}, + [1153] = {.lex_state = 23}, + [1154] = {.lex_state = 23}, + [1155] = {.lex_state = 23}, [1156] = {.lex_state = 23}, [1157] = {.lex_state = 23}, [1158] = {.lex_state = 23}, [1159] = {.lex_state = 23}, [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 23}, + [1161] = {.lex_state = 9}, [1162] = {.lex_state = 23}, - [1163] = {.lex_state = 23}, + [1163] = {.lex_state = 9}, [1164] = {.lex_state = 23}, [1165] = {.lex_state = 23}, [1166] = {.lex_state = 23}, [1167] = {.lex_state = 23}, [1168] = {.lex_state = 23}, - [1169] = {.lex_state = 23}, + [1169] = {.lex_state = 17}, [1170] = {.lex_state = 23}, - [1171] = {.lex_state = 23}, + [1171] = {.lex_state = 17}, [1172] = {.lex_state = 23}, [1173] = {.lex_state = 23}, [1174] = {.lex_state = 23}, @@ -11578,23 +11581,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 23}, [1190] = {.lex_state = 23}, [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 9}, - [1193] = {.lex_state = 20}, - [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 20}, - [1196] = {.lex_state = 23}, + [1192] = {.lex_state = 23}, + [1193] = {.lex_state = 23}, + [1194] = {.lex_state = 23}, + [1195] = {.lex_state = 23}, + [1196] = {.lex_state = 12, .external_lex_state = 2}, [1197] = {.lex_state = 23}, [1198] = {.lex_state = 23}, [1199] = {.lex_state = 23}, [1200] = {.lex_state = 23}, [1201] = {.lex_state = 23}, [1202] = {.lex_state = 23}, - [1203] = {.lex_state = 23}, + [1203] = {.lex_state = 9}, [1204] = {.lex_state = 23}, - [1205] = {.lex_state = 23}, - [1206] = {.lex_state = 23}, + [1205] = {.lex_state = 12, .external_lex_state = 2}, + [1206] = {.lex_state = 9}, [1207] = {.lex_state = 23}, - [1208] = {.lex_state = 23}, + [1208] = {.lex_state = 9}, [1209] = {.lex_state = 23}, [1210] = {.lex_state = 23}, [1211] = {.lex_state = 23}, @@ -11605,35 +11608,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1216] = {.lex_state = 23}, [1217] = {.lex_state = 23}, [1218] = {.lex_state = 23}, - [1219] = {.lex_state = 23}, + [1219] = {.lex_state = 21}, [1220] = {.lex_state = 23}, - [1221] = {.lex_state = 23}, + [1221] = {.lex_state = 20}, [1222] = {.lex_state = 23}, - [1223] = {.lex_state = 23}, + [1223] = {.lex_state = 9}, [1224] = {.lex_state = 23}, [1225] = {.lex_state = 23}, - [1226] = {.lex_state = 23}, + [1226] = {.lex_state = 9}, [1227] = {.lex_state = 23}, [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 23}, + [1229] = {.lex_state = 9}, [1230] = {.lex_state = 23}, [1231] = {.lex_state = 23}, - [1232] = {.lex_state = 23}, + [1232] = {.lex_state = 20}, [1233] = {.lex_state = 23}, - [1234] = {.lex_state = 23}, + [1234] = {.lex_state = 20}, [1235] = {.lex_state = 23}, [1236] = {.lex_state = 23}, [1237] = {.lex_state = 23}, [1238] = {.lex_state = 23}, [1239] = {.lex_state = 23}, [1240] = {.lex_state = 23}, - [1241] = {.lex_state = 23}, - [1242] = {.lex_state = 23}, - [1243] = {.lex_state = 23}, + [1241] = {.lex_state = 9}, + [1242] = {.lex_state = 9}, + [1243] = {.lex_state = 20}, [1244] = {.lex_state = 23}, [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 9}, - [1247] = {.lex_state = 20}, + [1246] = {.lex_state = 17}, + [1247] = {.lex_state = 23}, [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, [1250] = {.lex_state = 23}, @@ -11644,7 +11647,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 23}, + [1258] = {.lex_state = 14, .external_lex_state = 2}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, [1261] = {.lex_state = 23}, @@ -11662,31 +11665,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 23}, [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 9}, - [1277] = {.lex_state = 23}, + [1276] = {.lex_state = 23}, + [1277] = {.lex_state = 9}, [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 23}, + [1279] = {.lex_state = 9}, + [1280] = {.lex_state = 9}, [1281] = {.lex_state = 23}, [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, + [1283] = {.lex_state = 9}, [1284] = {.lex_state = 23}, [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, [1287] = {.lex_state = 23}, [1288] = {.lex_state = 23}, - [1289] = {.lex_state = 23}, + [1289] = {.lex_state = 8}, [1290] = {.lex_state = 23}, - [1291] = {.lex_state = 23}, + [1291] = {.lex_state = 20}, [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 23}, + [1293] = {.lex_state = 21}, [1294] = {.lex_state = 23}, - [1295] = {.lex_state = 23}, - [1296] = {.lex_state = 23}, - [1297] = {.lex_state = 23}, - [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 9}, - [1300] = {.lex_state = 20}, + [1295] = {.lex_state = 14, .external_lex_state = 2}, + [1296] = {.lex_state = 20}, + [1297] = {.lex_state = 20}, + [1298] = {.lex_state = 20}, + [1299] = {.lex_state = 20}, + [1300] = {.lex_state = 9}, [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, [1303] = {.lex_state = 23}, @@ -11698,7 +11701,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1309] = {.lex_state = 23}, [1310] = {.lex_state = 23}, [1311] = {.lex_state = 23}, - [1312] = {.lex_state = 23}, + [1312] = {.lex_state = 9}, [1313] = {.lex_state = 23}, [1314] = {.lex_state = 23}, [1315] = {.lex_state = 23}, @@ -11706,7 +11709,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1317] = {.lex_state = 23}, [1318] = {.lex_state = 23}, [1319] = {.lex_state = 23}, - [1320] = {.lex_state = 23}, + [1320] = {.lex_state = 9}, [1321] = {.lex_state = 23}, [1322] = {.lex_state = 23}, [1323] = {.lex_state = 23}, @@ -11715,14 +11718,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1326] = {.lex_state = 23}, [1327] = {.lex_state = 23}, [1328] = {.lex_state = 23}, - [1329] = {.lex_state = 23}, + [1329] = {.lex_state = 20}, [1330] = {.lex_state = 23}, [1331] = {.lex_state = 23}, [1332] = {.lex_state = 23}, [1333] = {.lex_state = 23}, [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 23}, - [1336] = {.lex_state = 23}, + [1335] = {.lex_state = 9}, + [1336] = {.lex_state = 20}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, [1339] = {.lex_state = 23}, @@ -11731,15 +11734,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1342] = {.lex_state = 23}, [1343] = {.lex_state = 23}, [1344] = {.lex_state = 23}, - [1345] = {.lex_state = 23}, + [1345] = {.lex_state = 14, .external_lex_state = 2}, [1346] = {.lex_state = 23}, [1347] = {.lex_state = 23}, [1348] = {.lex_state = 23}, [1349] = {.lex_state = 23}, [1350] = {.lex_state = 23}, [1351] = {.lex_state = 23}, - [1352] = {.lex_state = 9}, - [1353] = {.lex_state = 20}, + [1352] = {.lex_state = 23}, + [1353] = {.lex_state = 23}, [1354] = {.lex_state = 23}, [1355] = {.lex_state = 23}, [1356] = {.lex_state = 23}, @@ -11747,14 +11750,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1358] = {.lex_state = 23}, [1359] = {.lex_state = 23}, [1360] = {.lex_state = 23}, - [1361] = {.lex_state = 23}, + [1361] = {.lex_state = 17}, [1362] = {.lex_state = 23}, [1363] = {.lex_state = 23}, [1364] = {.lex_state = 23}, [1365] = {.lex_state = 23}, [1366] = {.lex_state = 23}, [1367] = {.lex_state = 23}, - [1368] = {.lex_state = 23}, + [1368] = {.lex_state = 14, .external_lex_state = 2}, [1369] = {.lex_state = 23}, [1370] = {.lex_state = 23}, [1371] = {.lex_state = 23}, @@ -11787,7 +11790,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1398] = {.lex_state = 23}, [1399] = {.lex_state = 23}, [1400] = {.lex_state = 23}, - [1401] = {.lex_state = 23}, + [1401] = {.lex_state = 9}, [1402] = {.lex_state = 23}, [1403] = {.lex_state = 23}, [1404] = {.lex_state = 23}, @@ -11795,28 +11798,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1406] = {.lex_state = 23}, [1407] = {.lex_state = 23}, [1408] = {.lex_state = 23}, - [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 17}, - [1411] = {.lex_state = 14, .external_lex_state = 2}, - [1412] = {.lex_state = 14, .external_lex_state = 2}, - [1413] = {.lex_state = 14, .external_lex_state = 2}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 23}, + [1411] = {.lex_state = 23}, + [1412] = {.lex_state = 23}, + [1413] = {.lex_state = 23}, [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 14, .external_lex_state = 2}, - [1416] = {.lex_state = 9}, + [1415] = {.lex_state = 23}, + [1416] = {.lex_state = 23}, [1417] = {.lex_state = 9}, - [1418] = {.lex_state = 9}, - [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 9}, - [1422] = {.lex_state = 9}, - [1423] = {.lex_state = 9}, - [1424] = {.lex_state = 9}, - [1425] = {.lex_state = 9}, + [1418] = {.lex_state = 23}, + [1419] = {.lex_state = 17}, + [1420] = {.lex_state = 23}, + [1421] = {.lex_state = 23}, + [1422] = {.lex_state = 23}, + [1423] = {.lex_state = 23}, + [1424] = {.lex_state = 23}, + [1425] = {.lex_state = 23}, [1426] = {.lex_state = 9}, [1427] = {.lex_state = 9}, [1428] = {.lex_state = 9}, [1429] = {.lex_state = 9}, - [1430] = {.lex_state = 9}, + [1430] = {.lex_state = 17}, [1431] = {.lex_state = 9}, [1432] = {.lex_state = 9}, [1433] = {.lex_state = 9}, @@ -11868,7 +11871,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 9}, [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 17}, + [1482] = {.lex_state = 9}, [1483] = {.lex_state = 9}, [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, @@ -11917,7 +11920,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1528] = {.lex_state = 9}, [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 9}, + [1531] = {.lex_state = 10}, [1532] = {.lex_state = 9}, [1533] = {.lex_state = 9}, [1534] = {.lex_state = 9}, @@ -11926,90 +11929,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1537] = {.lex_state = 9}, [1538] = {.lex_state = 9}, [1539] = {.lex_state = 9}, - [1540] = {.lex_state = 17}, - [1541] = {.lex_state = 17}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, [1542] = {.lex_state = 9}, [1543] = {.lex_state = 9}, [1544] = {.lex_state = 9}, [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 17}, + [1546] = {.lex_state = 9}, + [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, [1549] = {.lex_state = 9}, - [1550] = {.lex_state = 9}, + [1550] = {.lex_state = 13, .external_lex_state = 2}, [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 11}, - [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 11}, + [1552] = {.lex_state = 13, .external_lex_state = 2}, + [1553] = {.lex_state = 17}, + [1554] = {.lex_state = 17}, [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 17}, + [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 17}, + [1558] = {.lex_state = 17}, + [1559] = {.lex_state = 9}, [1560] = {.lex_state = 9}, - [1561] = {.lex_state = 17}, - [1562] = {.lex_state = 17}, + [1561] = {.lex_state = 9}, + [1562] = {.lex_state = 9}, [1563] = {.lex_state = 9}, [1564] = {.lex_state = 9}, - [1565] = {.lex_state = 13, .external_lex_state = 2}, - [1566] = {.lex_state = 13, .external_lex_state = 2}, - [1567] = {.lex_state = 9}, - [1568] = {.lex_state = 9}, - [1569] = {.lex_state = 13, .external_lex_state = 2}, + [1565] = {.lex_state = 9}, + [1566] = {.lex_state = 11}, + [1567] = {.lex_state = 17}, + [1568] = {.lex_state = 11}, + [1569] = {.lex_state = 11}, [1570] = {.lex_state = 13, .external_lex_state = 2}, - [1571] = {.lex_state = 9}, + [1571] = {.lex_state = 13, .external_lex_state = 2}, [1572] = {.lex_state = 9}, - [1573] = {.lex_state = 9}, - [1574] = {.lex_state = 9}, - [1575] = {.lex_state = 13, .external_lex_state = 2}, + [1573] = {.lex_state = 17}, + [1574] = {.lex_state = 13, .external_lex_state = 2}, + [1575] = {.lex_state = 9}, [1576] = {.lex_state = 9}, [1577] = {.lex_state = 13, .external_lex_state = 2}, [1578] = {.lex_state = 9}, [1579] = {.lex_state = 9}, [1580] = {.lex_state = 9}, - [1581] = {.lex_state = 17}, + [1581] = {.lex_state = 9}, [1582] = {.lex_state = 9}, - [1583] = {.lex_state = 10}, - [1584] = {.lex_state = 11}, - [1585] = {.lex_state = 9}, - [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 10}, - [1588] = {.lex_state = 10}, + [1583] = {.lex_state = 9}, + [1584] = {.lex_state = 9}, + [1585] = {.lex_state = 10}, + [1586] = {.lex_state = 9}, + [1587] = {.lex_state = 11}, + [1588] = {.lex_state = 9}, [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 10}, + [1590] = {.lex_state = 11}, [1591] = {.lex_state = 11}, - [1592] = {.lex_state = 9}, - [1593] = {.lex_state = 9}, + [1592] = {.lex_state = 11}, + [1593] = {.lex_state = 10}, [1594] = {.lex_state = 11}, - [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 11}, - [1597] = {.lex_state = 11}, + [1595] = {.lex_state = 10}, + [1596] = {.lex_state = 10}, + [1597] = {.lex_state = 9}, [1598] = {.lex_state = 11}, [1599] = {.lex_state = 9}, - [1600] = {.lex_state = 11}, + [1600] = {.lex_state = 9}, [1601] = {.lex_state = 9}, [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 11}, - [1604] = {.lex_state = 9}, - [1605] = {.lex_state = 17}, - [1606] = {.lex_state = 10}, + [1603] = {.lex_state = 9}, + [1604] = {.lex_state = 11}, + [1605] = {.lex_state = 11}, + [1606] = {.lex_state = 11}, [1607] = {.lex_state = 17}, - [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 9}, - [1610] = {.lex_state = 9}, + [1608] = {.lex_state = 10}, + [1609] = {.lex_state = 10}, + [1610] = {.lex_state = 10}, [1611] = {.lex_state = 10}, [1612] = {.lex_state = 10}, [1613] = {.lex_state = 10}, - [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 10}, - [1616] = {.lex_state = 9}, + [1614] = {.lex_state = 10}, + [1615] = {.lex_state = 17}, + [1616] = {.lex_state = 10}, [1617] = {.lex_state = 10}, [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 9}, - [1620] = {.lex_state = 10}, + [1619] = {.lex_state = 17}, + [1620] = {.lex_state = 9}, [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 10}, + [1622] = {.lex_state = 10}, + [1623] = {.lex_state = 9}, [1624] = {.lex_state = 9}, [1625] = {.lex_state = 9}, [1626] = {.lex_state = 9}, @@ -12017,86 +12020,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1628] = {.lex_state = 9}, [1629] = {.lex_state = 9}, [1630] = {.lex_state = 9}, - [1631] = {.lex_state = 9}, - [1632] = {.lex_state = 10}, - [1633] = {.lex_state = 10}, - [1634] = {.lex_state = 17}, - [1635] = {.lex_state = 10}, - [1636] = {.lex_state = 10}, + [1631] = {.lex_state = 10}, + [1632] = {.lex_state = 9}, + [1633] = {.lex_state = 9}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 9}, + [1636] = {.lex_state = 9}, [1637] = {.lex_state = 9}, [1638] = {.lex_state = 17}, - [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 22}, + [1639] = {.lex_state = 10}, + [1640] = {.lex_state = 9}, + [1641] = {.lex_state = 9}, [1642] = {.lex_state = 10}, [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 22}, - [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 10}, - [1647] = {.lex_state = 9}, - [1648] = {.lex_state = 9}, - [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 22}, - [1652] = {.lex_state = 10}, - [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 9}, + [1644] = {.lex_state = 9}, + [1645] = {.lex_state = 22}, + [1646] = {.lex_state = 9}, + [1647] = {.lex_state = 22}, + [1648] = {.lex_state = 10}, + [1649] = {.lex_state = 22}, + [1650] = {.lex_state = 10}, + [1651] = {.lex_state = 9}, + [1652] = {.lex_state = 22}, + [1653] = {.lex_state = 22}, + [1654] = {.lex_state = 10}, [1655] = {.lex_state = 9}, - [1656] = {.lex_state = 17}, + [1656] = {.lex_state = 9}, [1657] = {.lex_state = 10}, [1658] = {.lex_state = 9}, [1659] = {.lex_state = 10}, [1660] = {.lex_state = 10}, - [1661] = {.lex_state = 22}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 9}, + [1661] = {.lex_state = 10}, + [1662] = {.lex_state = 10}, + [1663] = {.lex_state = 10}, [1664] = {.lex_state = 9}, [1665] = {.lex_state = 9}, [1666] = {.lex_state = 10}, - [1667] = {.lex_state = 9}, + [1667] = {.lex_state = 10}, [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 10}, - [1670] = {.lex_state = 9}, - [1671] = {.lex_state = 22}, + [1669] = {.lex_state = 9}, + [1670] = {.lex_state = 22}, + [1671] = {.lex_state = 9}, [1672] = {.lex_state = 9}, - [1673] = {.lex_state = 22}, + [1673] = {.lex_state = 9}, [1674] = {.lex_state = 9}, [1675] = {.lex_state = 9}, [1676] = {.lex_state = 10}, [1677] = {.lex_state = 9}, - [1678] = {.lex_state = 9}, - [1679] = {.lex_state = 10}, + [1678] = {.lex_state = 17}, + [1679] = {.lex_state = 9}, [1680] = {.lex_state = 9}, - [1681] = {.lex_state = 9}, - [1682] = {.lex_state = 9}, - [1683] = {.lex_state = 10}, - [1684] = {.lex_state = 9}, - [1685] = {.lex_state = 10}, - [1686] = {.lex_state = 10}, - [1687] = {.lex_state = 9}, - [1688] = {.lex_state = 9}, - [1689] = {.lex_state = 10}, - [1690] = {.lex_state = 10}, + [1681] = {.lex_state = 11}, + [1682] = {.lex_state = 22}, + [1683] = {.lex_state = 9}, + [1684] = {.lex_state = 22}, + [1685] = {.lex_state = 22}, + [1686] = {.lex_state = 9}, + [1687] = {.lex_state = 22}, + [1688] = {.lex_state = 22}, + [1689] = {.lex_state = 22}, + [1690] = {.lex_state = 9}, [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 11}, - [1693] = {.lex_state = 9}, - [1694] = {.lex_state = 22}, - [1695] = {.lex_state = 22}, - [1696] = {.lex_state = 22}, - [1697] = {.lex_state = 22}, - [1698] = {.lex_state = 22}, + [1692] = {.lex_state = 9}, + [1693] = {.lex_state = 10}, + [1694] = {.lex_state = 9}, + [1695] = {.lex_state = 9}, + [1696] = {.lex_state = 10}, + [1697] = {.lex_state = 10}, + [1698] = {.lex_state = 10}, [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 9}, + [1700] = {.lex_state = 10}, [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 10}, + [1702] = {.lex_state = 9}, [1703] = {.lex_state = 10}, [1704] = {.lex_state = 10}, - [1705] = {.lex_state = 9}, - [1706] = {.lex_state = 10}, + [1705] = {.lex_state = 10}, + [1706] = {.lex_state = 9}, [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 9}, + [1708] = {.lex_state = 10}, [1709] = {.lex_state = 10}, - [1710] = {.lex_state = 10}, + [1710] = {.lex_state = 9}, [1711] = {.lex_state = 10}, [1712] = {.lex_state = 10}, [1713] = {.lex_state = 10}, @@ -12104,61 +12107,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1715] = {.lex_state = 10}, [1716] = {.lex_state = 10}, [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 10}, + [1718] = {.lex_state = 9}, [1719] = {.lex_state = 10}, [1720] = {.lex_state = 10}, [1721] = {.lex_state = 10}, [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 9}, - [1724] = {.lex_state = 9}, - [1725] = {.lex_state = 10}, + [1723] = {.lex_state = 10}, + [1724] = {.lex_state = 10}, + [1725] = {.lex_state = 9}, [1726] = {.lex_state = 9}, [1727] = {.lex_state = 9}, - [1728] = {.lex_state = 9}, + [1728] = {.lex_state = 10}, [1729] = {.lex_state = 9}, - [1730] = {.lex_state = 9}, - [1731] = {.lex_state = 9}, - [1732] = {.lex_state = 9}, - [1733] = {.lex_state = 9}, - [1734] = {.lex_state = 9}, - [1735] = {.lex_state = 9}, - [1736] = {.lex_state = 9}, - [1737] = {.lex_state = 9}, - [1738] = {.lex_state = 9}, - [1739] = {.lex_state = 9}, - [1740] = {.lex_state = 10}, - [1741] = {.lex_state = 10}, + [1730] = {.lex_state = 10}, + [1731] = {.lex_state = 10}, + [1732] = {.lex_state = 10}, + [1733] = {.lex_state = 10}, + [1734] = {.lex_state = 10}, + [1735] = {.lex_state = 10}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 10}, + [1738] = {.lex_state = 10}, + [1739] = {.lex_state = 10}, + [1740] = {.lex_state = 9}, + [1741] = {.lex_state = 9}, [1742] = {.lex_state = 10}, - [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 9}, - [1745] = {.lex_state = 10}, - [1746] = {.lex_state = 10}, - [1747] = {.lex_state = 10}, + [1743] = {.lex_state = 9}, + [1744] = {.lex_state = 10}, + [1745] = {.lex_state = 9}, + [1746] = {.lex_state = 9}, + [1747] = {.lex_state = 9}, [1748] = {.lex_state = 9}, - [1749] = {.lex_state = 10}, - [1750] = {.lex_state = 10}, - [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 10}, - [1755] = {.lex_state = 10}, + [1749] = {.lex_state = 9}, + [1750] = {.lex_state = 9}, + [1751] = {.lex_state = 9}, + [1752] = {.lex_state = 9}, + [1753] = {.lex_state = 9}, + [1754] = {.lex_state = 9}, + [1755] = {.lex_state = 9}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, [1758] = {.lex_state = 10}, - [1759] = {.lex_state = 9}, + [1759] = {.lex_state = 10}, [1760] = {.lex_state = 10}, [1761] = {.lex_state = 10}, [1762] = {.lex_state = 10}, [1763] = {.lex_state = 9}, - [1764] = {.lex_state = 10}, + [1764] = {.lex_state = 9}, [1765] = {.lex_state = 10}, [1766] = {.lex_state = 10}, [1767] = {.lex_state = 10}, - [1768] = {.lex_state = 10}, + [1768] = {.lex_state = 9}, [1769] = {.lex_state = 10}, [1770] = {.lex_state = 10}, [1771] = {.lex_state = 10}, - [1772] = {.lex_state = 9}, + [1772] = {.lex_state = 10}, [1773] = {.lex_state = 10}, [1774] = {.lex_state = 10}, [1775] = {.lex_state = 10}, @@ -12170,30 +12173,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1781] = {.lex_state = 10}, [1782] = {.lex_state = 10}, [1783] = {.lex_state = 10}, - [1784] = {.lex_state = 9}, - [1785] = {.lex_state = 9}, + [1784] = {.lex_state = 10}, + [1785] = {.lex_state = 10}, [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 10}, [1789] = {.lex_state = 10}, [1790] = {.lex_state = 10}, [1791] = {.lex_state = 10}, - [1792] = {.lex_state = 9}, + [1792] = {.lex_state = 10}, [1793] = {.lex_state = 10}, [1794] = {.lex_state = 10}, [1795] = {.lex_state = 10}, - [1796] = {.lex_state = 10}, + [1796] = {.lex_state = 9}, [1797] = {.lex_state = 10}, [1798] = {.lex_state = 10}, [1799] = {.lex_state = 10}, - [1800] = {.lex_state = 10}, + [1800] = {.lex_state = 9}, [1801] = {.lex_state = 10}, [1802] = {.lex_state = 10}, [1803] = {.lex_state = 10}, [1804] = {.lex_state = 10}, [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 10}, + [1807] = {.lex_state = 9}, [1808] = {.lex_state = 10}, [1809] = {.lex_state = 9}, [1810] = {.lex_state = 10}, @@ -12205,15 +12208,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1816] = {.lex_state = 10}, [1817] = {.lex_state = 10}, [1818] = {.lex_state = 10}, - [1819] = {.lex_state = 10}, + [1819] = {.lex_state = 9}, [1820] = {.lex_state = 10}, [1821] = {.lex_state = 10}, [1822] = {.lex_state = 10}, [1823] = {.lex_state = 10}, [1824] = {.lex_state = 10}, - [1825] = {.lex_state = 10}, + [1825] = {.lex_state = 9}, [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 9}, + [1827] = {.lex_state = 10}, [1828] = {.lex_state = 10}, [1829] = {.lex_state = 10}, [1830] = {.lex_state = 10}, @@ -12229,32 +12232,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1840] = {.lex_state = 10}, [1841] = {.lex_state = 10}, [1842] = {.lex_state = 10}, - [1843] = {.lex_state = 9}, + [1843] = {.lex_state = 10}, [1844] = {.lex_state = 10}, - [1845] = {.lex_state = 9}, + [1845] = {.lex_state = 10}, [1846] = {.lex_state = 10}, [1847] = {.lex_state = 10}, [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, - [1850] = {.lex_state = 10}, - [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 9}, + [1849] = {.lex_state = 10}, + [1850] = {.lex_state = 9}, + [1851] = {.lex_state = 10}, + [1852] = {.lex_state = 10}, [1853] = {.lex_state = 9}, - [1854] = {.lex_state = 17}, - [1855] = {.lex_state = 9}, + [1854] = {.lex_state = 9}, + [1855] = {.lex_state = 10}, [1856] = {.lex_state = 10}, [1857] = {.lex_state = 9}, [1858] = {.lex_state = 10}, [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 9}, + [1860] = {.lex_state = 17}, [1861] = {.lex_state = 9}, [1862] = {.lex_state = 9}, [1863] = {.lex_state = 9}, - [1864] = {.lex_state = 9}, + [1864] = {.lex_state = 10}, [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 9}, + [1866] = {.lex_state = 10}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 9}, + [1868] = {.lex_state = 10}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 9}, [1871] = {.lex_state = 9}, @@ -12262,17 +12265,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1873] = {.lex_state = 9}, [1874] = {.lex_state = 9}, [1875] = {.lex_state = 9}, - [1876] = {.lex_state = 17}, - [1877] = {.lex_state = 9}, + [1876] = {.lex_state = 10}, + [1877] = {.lex_state = 10}, [1878] = {.lex_state = 9}, [1879] = {.lex_state = 9}, - [1880] = {.lex_state = 9}, + [1880] = {.lex_state = 10}, [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 10}, + [1882] = {.lex_state = 9}, [1883] = {.lex_state = 9}, [1884] = {.lex_state = 9}, [1885] = {.lex_state = 9}, - [1886] = {.lex_state = 10}, + [1886] = {.lex_state = 9}, [1887] = {.lex_state = 9}, [1888] = {.lex_state = 9}, [1889] = {.lex_state = 9}, @@ -12288,60 +12291,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1899] = {.lex_state = 9}, [1900] = {.lex_state = 9}, [1901] = {.lex_state = 9}, - [1902] = {.lex_state = 10}, - [1903] = {.lex_state = 10}, - [1904] = {.lex_state = 10}, - [1905] = {.lex_state = 10}, - [1906] = {.lex_state = 10}, + [1902] = {.lex_state = 9}, + [1903] = {.lex_state = 9}, + [1904] = {.lex_state = 9}, + [1905] = {.lex_state = 9}, + [1906] = {.lex_state = 9}, [1907] = {.lex_state = 9}, [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, + [1909] = {.lex_state = 17}, [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 10}, - [1912] = {.lex_state = 9}, - [1913] = {.lex_state = 10}, - [1914] = {.lex_state = 9}, + [1911] = {.lex_state = 9}, + [1912] = {.lex_state = 10}, + [1913] = {.lex_state = 9}, + [1914] = {.lex_state = 10}, [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 10}, + [1916] = {.lex_state = 9}, [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 9}, - [1919] = {.lex_state = 17}, + [1918] = {.lex_state = 10}, + [1919] = {.lex_state = 9}, [1920] = {.lex_state = 9}, [1921] = {.lex_state = 9}, [1922] = {.lex_state = 9}, - [1923] = {.lex_state = 10}, + [1923] = {.lex_state = 9}, [1924] = {.lex_state = 9}, [1925] = {.lex_state = 9}, [1926] = {.lex_state = 9}, - [1927] = {.lex_state = 10}, + [1927] = {.lex_state = 9}, [1928] = {.lex_state = 9}, [1929] = {.lex_state = 9}, - [1930] = {.lex_state = 17}, + [1930] = {.lex_state = 9}, [1931] = {.lex_state = 9}, [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 9}, - [1934] = {.lex_state = 10}, + [1933] = {.lex_state = 10}, + [1934] = {.lex_state = 9}, [1935] = {.lex_state = 9}, - [1936] = {.lex_state = 17}, + [1936] = {.lex_state = 9}, [1937] = {.lex_state = 9}, - [1938] = {.lex_state = 9}, + [1938] = {.lex_state = 17}, [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 9}, - [1941] = {.lex_state = 9}, + [1940] = {.lex_state = 10}, + [1941] = {.lex_state = 17}, [1942] = {.lex_state = 9}, [1943] = {.lex_state = 9}, [1944] = {.lex_state = 9}, - [1945] = {.lex_state = 9}, + [1945] = {.lex_state = 10}, [1946] = {.lex_state = 9}, - [1947] = {.lex_state = 9}, + [1947] = {.lex_state = 17}, [1948] = {.lex_state = 9}, [1949] = {.lex_state = 17}, [1950] = {.lex_state = 9}, [1951] = {.lex_state = 9}, [1952] = {.lex_state = 9}, [1953] = {.lex_state = 17}, - [1954] = {.lex_state = 17}, - [1955] = {.lex_state = 17}, + [1954] = {.lex_state = 9}, + [1955] = {.lex_state = 9}, [1956] = {.lex_state = 17}, [1957] = {.lex_state = 17}, [1958] = {.lex_state = 17}, @@ -12362,86 +12365,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1973] = {.lex_state = 17}, [1974] = {.lex_state = 17}, [1975] = {.lex_state = 17}, - [1976] = {.lex_state = 31}, - [1977] = {.lex_state = 31}, - [1978] = {.lex_state = 18}, - [1979] = {.lex_state = 18}, + [1976] = {.lex_state = 17}, + [1977] = {.lex_state = 17}, + [1978] = {.lex_state = 31}, + [1979] = {.lex_state = 31}, [1980] = {.lex_state = 18}, [1981] = {.lex_state = 18}, [1982] = {.lex_state = 18}, [1983] = {.lex_state = 18}, - [1984] = {.lex_state = 17}, + [1984] = {.lex_state = 18}, [1985] = {.lex_state = 17}, [1986] = {.lex_state = 17}, [1987] = {.lex_state = 18}, - [1988] = {.lex_state = 18}, + [1988] = {.lex_state = 17}, [1989] = {.lex_state = 18}, [1990] = {.lex_state = 18}, [1991] = {.lex_state = 18}, - [1992] = {.lex_state = 17}, + [1992] = {.lex_state = 18}, [1993] = {.lex_state = 18}, - [1994] = {.lex_state = 13, .external_lex_state = 2}, + [1994] = {.lex_state = 18}, [1995] = {.lex_state = 17}, - [1996] = {.lex_state = 17}, + [1996] = {.lex_state = 31}, [1997] = {.lex_state = 17}, - [1998] = {.lex_state = 31}, - [1999] = {.lex_state = 18}, + [1998] = {.lex_state = 17}, + [1999] = {.lex_state = 13, .external_lex_state = 2}, [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 18}, - [2002] = {.lex_state = 17}, - [2003] = {.lex_state = 17}, - [2004] = {.lex_state = 18}, - [2005] = {.lex_state = 17}, + [2001] = {.lex_state = 17}, + [2002] = {.lex_state = 18}, + [2003] = {.lex_state = 31}, + [2004] = {.lex_state = 31}, + [2005] = {.lex_state = 18}, [2006] = {.lex_state = 17}, [2007] = {.lex_state = 31}, [2008] = {.lex_state = 17}, - [2009] = {.lex_state = 31}, - [2010] = {.lex_state = 31}, + [2009] = {.lex_state = 17}, + [2010] = {.lex_state = 18}, [2011] = {.lex_state = 31}, - [2012] = {.lex_state = 31}, + [2012] = {.lex_state = 17}, [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 18}, - [2015] = {.lex_state = 17}, - [2016] = {.lex_state = 31}, - [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 31}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 31}, - [2021] = {.lex_state = 17}, - [2022] = {.lex_state = 31}, - [2023] = {.lex_state = 31}, + [2014] = {.lex_state = 31}, + [2015] = {.lex_state = 31}, + [2016] = {.lex_state = 17}, + [2017] = {.lex_state = 17}, + [2018] = {.lex_state = 17}, + [2019] = {.lex_state = 31}, + [2020] = {.lex_state = 17}, + [2021] = {.lex_state = 31}, + [2022] = {.lex_state = 18}, + [2023] = {.lex_state = 17}, [2024] = {.lex_state = 17}, [2025] = {.lex_state = 31}, [2026] = {.lex_state = 17}, [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 18}, - [2029] = {.lex_state = 18}, + [2028] = {.lex_state = 31}, + [2029] = {.lex_state = 17}, [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 17}, - [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 31}, - [2034] = {.lex_state = 31}, + [2031] = {.lex_state = 31}, + [2032] = {.lex_state = 18}, + [2033] = {.lex_state = 18}, + [2034] = {.lex_state = 18}, [2035] = {.lex_state = 31}, [2036] = {.lex_state = 31}, [2037] = {.lex_state = 31}, [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 17}, - [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 17}, + [2039] = {.lex_state = 31}, + [2040] = {.lex_state = 18}, + [2041] = {.lex_state = 31}, [2042] = {.lex_state = 31}, [2043] = {.lex_state = 17}, - [2044] = {.lex_state = 31}, + [2044] = {.lex_state = 17}, [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 31}, + [2046] = {.lex_state = 17}, [2047] = {.lex_state = 31}, [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 18}, + [2049] = {.lex_state = 31}, [2050] = {.lex_state = 31}, - [2051] = {.lex_state = 31}, + [2051] = {.lex_state = 17}, [2052] = {.lex_state = 31}, [2053] = {.lex_state = 31}, [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 17}, + [2055] = {.lex_state = 31}, [2056] = {.lex_state = 31}, [2057] = {.lex_state = 31}, [2058] = {.lex_state = 31}, @@ -12451,16 +12454,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2062] = {.lex_state = 31}, [2063] = {.lex_state = 31}, [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 31}, + [2065] = {.lex_state = 17}, [2066] = {.lex_state = 31}, [2067] = {.lex_state = 31}, [2068] = {.lex_state = 31}, [2069] = {.lex_state = 31}, [2070] = {.lex_state = 31}, - [2071] = {.lex_state = 17}, + [2071] = {.lex_state = 31}, [2072] = {.lex_state = 31}, [2073] = {.lex_state = 17}, - [2074] = {.lex_state = 31}, + [2074] = {.lex_state = 17}, [2075] = {.lex_state = 31}, [2076] = {.lex_state = 17}, [2077] = {.lex_state = 17}, @@ -12468,25 +12471,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2079] = {.lex_state = 17}, [2080] = {.lex_state = 17}, [2081] = {.lex_state = 17}, - [2082] = {.lex_state = 17}, - [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 18}, + [2082] = {.lex_state = 31}, + [2083] = {.lex_state = 31}, + [2084] = {.lex_state = 17}, [2085] = {.lex_state = 18}, [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 31}, + [2087] = {.lex_state = 18}, [2088] = {.lex_state = 18}, [2089] = {.lex_state = 18}, [2090] = {.lex_state = 18}, [2091] = {.lex_state = 18}, - [2092] = {.lex_state = 18}, - [2093] = {.lex_state = 18}, + [2092] = {.lex_state = 19}, + [2093] = {.lex_state = 31}, [2094] = {.lex_state = 18}, [2095] = {.lex_state = 18}, - [2096] = {.lex_state = 31}, - [2097] = {.lex_state = 19}, + [2096] = {.lex_state = 18}, + [2097] = {.lex_state = 31}, [2098] = {.lex_state = 18}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 17}, + [2099] = {.lex_state = 18}, + [2100] = {.lex_state = 18}, [2101] = {.lex_state = 17}, [2102] = {.lex_state = 17}, [2103] = {.lex_state = 17}, @@ -12496,165 +12499,165 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2107] = {.lex_state = 17}, [2108] = {.lex_state = 17}, [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 31}, - [2111] = {.lex_state = 17}, + [2110] = {.lex_state = 24}, + [2111] = {.lex_state = 31}, [2112] = {.lex_state = 17}, [2113] = {.lex_state = 17}, - [2114] = {.lex_state = 27}, - [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 17}, + [2114] = {.lex_state = 17}, + [2115] = {.lex_state = 17}, + [2116] = {.lex_state = 18}, [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 18}, - [2119] = {.lex_state = 18}, + [2118] = {.lex_state = 31}, + [2119] = {.lex_state = 24}, [2120] = {.lex_state = 18}, [2121] = {.lex_state = 17}, [2122] = {.lex_state = 17}, - [2123] = {.lex_state = 31}, + [2123] = {.lex_state = 17}, [2124] = {.lex_state = 17}, - [2125] = {.lex_state = 18}, + [2125] = {.lex_state = 17}, [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 19}, - [2128] = {.lex_state = 18}, + [2127] = {.lex_state = 17}, + [2128] = {.lex_state = 31}, [2129] = {.lex_state = 17}, [2130] = {.lex_state = 17}, [2131] = {.lex_state = 17}, - [2132] = {.lex_state = 19}, - [2133] = {.lex_state = 31}, + [2132] = {.lex_state = 17}, + [2133] = {.lex_state = 18}, [2134] = {.lex_state = 17}, [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 19}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 31}, - [2141] = {.lex_state = 24}, - [2142] = {.lex_state = 24}, - [2143] = {.lex_state = 18}, - [2144] = {.lex_state = 24}, - [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 19}, - [2147] = {.lex_state = 24}, - [2148] = {.lex_state = 18}, + [2136] = {.lex_state = 19}, + [2137] = {.lex_state = 18}, + [2138] = {.lex_state = 19}, + [2139] = {.lex_state = 19}, + [2140] = {.lex_state = 19}, + [2141] = {.lex_state = 18}, + [2142] = {.lex_state = 27}, + [2143] = {.lex_state = 17}, + [2144] = {.lex_state = 17}, + [2145] = {.lex_state = 24}, + [2146] = {.lex_state = 31}, + [2147] = {.lex_state = 18}, + [2148] = {.lex_state = 24}, [2149] = {.lex_state = 18}, [2150] = {.lex_state = 18}, - [2151] = {.lex_state = 17}, - [2152] = {.lex_state = 31}, + [2151] = {.lex_state = 18}, + [2152] = {.lex_state = 17}, [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 18}, - [2155] = {.lex_state = 27}, + [2154] = {.lex_state = 27}, + [2155] = {.lex_state = 31}, [2156] = {.lex_state = 17}, - [2157] = {.lex_state = 31}, - [2158] = {.lex_state = 17}, + [2157] = {.lex_state = 18}, + [2158] = {.lex_state = 18}, [2159] = {.lex_state = 31}, - [2160] = {.lex_state = 17}, + [2160] = {.lex_state = 31}, [2161] = {.lex_state = 31}, - [2162] = {.lex_state = 17}, + [2162] = {.lex_state = 31}, [2163] = {.lex_state = 31}, - [2164] = {.lex_state = 27}, + [2164] = {.lex_state = 31}, [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 27}, + [2166] = {.lex_state = 31}, [2167] = {.lex_state = 31}, - [2168] = {.lex_state = 27}, + [2168] = {.lex_state = 31}, [2169] = {.lex_state = 31}, [2170] = {.lex_state = 31}, [2171] = {.lex_state = 31}, - [2172] = {.lex_state = 18}, + [2172] = {.lex_state = 19}, [2173] = {.lex_state = 31}, - [2174] = {.lex_state = 31}, + [2174] = {.lex_state = 27}, [2175] = {.lex_state = 31}, - [2176] = {.lex_state = 31}, + [2176] = {.lex_state = 18}, [2177] = {.lex_state = 31}, [2178] = {.lex_state = 31}, [2179] = {.lex_state = 31}, [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, + [2181] = {.lex_state = 18}, + [2182] = {.lex_state = 17}, [2183] = {.lex_state = 31}, - [2184] = {.lex_state = 31}, + [2184] = {.lex_state = 18}, [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 18}, - [2187] = {.lex_state = 31}, + [2186] = {.lex_state = 31}, + [2187] = {.lex_state = 12}, [2188] = {.lex_state = 31}, [2189] = {.lex_state = 31}, [2190] = {.lex_state = 31}, [2191] = {.lex_state = 31}, - [2192] = {.lex_state = 17}, - [2193] = {.lex_state = 19}, - [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 17}, + [2192] = {.lex_state = 31}, + [2193] = {.lex_state = 18}, + [2194] = {.lex_state = 18}, + [2195] = {.lex_state = 27}, [2196] = {.lex_state = 31}, - [2197] = {.lex_state = 18}, - [2198] = {.lex_state = 18}, - [2199] = {.lex_state = 31}, - [2200] = {.lex_state = 12}, - [2201] = {.lex_state = 27}, - [2202] = {.lex_state = 18}, - [2203] = {.lex_state = 18}, + [2197] = {.lex_state = 31}, + [2198] = {.lex_state = 31}, + [2199] = {.lex_state = 18}, + [2200] = {.lex_state = 31}, + [2201] = {.lex_state = 17}, + [2202] = {.lex_state = 31}, + [2203] = {.lex_state = 31}, [2204] = {.lex_state = 31}, - [2205] = {.lex_state = 31}, - [2206] = {.lex_state = 31}, - [2207] = {.lex_state = 31}, + [2205] = {.lex_state = 27}, + [2206] = {.lex_state = 17}, + [2207] = {.lex_state = 17}, [2208] = {.lex_state = 31}, [2209] = {.lex_state = 31}, - [2210] = {.lex_state = 18}, - [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 18}, - [2213] = {.lex_state = 17}, - [2214] = {.lex_state = 17}, - [2215] = {.lex_state = 17}, - [2216] = {.lex_state = 31}, - [2217] = {.lex_state = 17}, - [2218] = {.lex_state = 19}, - [2219] = {.lex_state = 19}, - [2220] = {.lex_state = 8}, + [2210] = {.lex_state = 31}, + [2211] = {.lex_state = 27}, + [2212] = {.lex_state = 17}, + [2213] = {.lex_state = 18}, + [2214] = {.lex_state = 27}, + [2215] = {.lex_state = 31}, + [2216] = {.lex_state = 19}, + [2217] = {.lex_state = 31}, + [2218] = {.lex_state = 17}, + [2219] = {.lex_state = 17}, + [2220] = {.lex_state = 31}, [2221] = {.lex_state = 17}, [2222] = {.lex_state = 17}, - [2223] = {.lex_state = 8}, - [2224] = {.lex_state = 72}, - [2225] = {.lex_state = 12}, - [2226] = {.lex_state = 31}, - [2227] = {.lex_state = 12}, - [2228] = {.lex_state = 12}, - [2229] = {.lex_state = 31}, - [2230] = {.lex_state = 27}, - [2231] = {.lex_state = 8}, + [2223] = {.lex_state = 17}, + [2224] = {.lex_state = 17}, + [2225] = {.lex_state = 17}, + [2226] = {.lex_state = 8}, + [2227] = {.lex_state = 72}, + [2228] = {.lex_state = 17}, + [2229] = {.lex_state = 17}, + [2230] = {.lex_state = 12}, + [2231] = {.lex_state = 17}, [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 19}, - [2234] = {.lex_state = 17}, - [2235] = {.lex_state = 31}, - [2236] = {.lex_state = 31}, + [2233] = {.lex_state = 17}, + [2234] = {.lex_state = 18}, + [2235] = {.lex_state = 17}, + [2236] = {.lex_state = 17}, [2237] = {.lex_state = 31}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 19}, - [2240] = {.lex_state = 17}, + [2238] = {.lex_state = 19}, + [2239] = {.lex_state = 17}, + [2240] = {.lex_state = 19}, [2241] = {.lex_state = 17}, [2242] = {.lex_state = 17}, [2243] = {.lex_state = 17}, - [2244] = {.lex_state = 17}, + [2244] = {.lex_state = 12}, [2245] = {.lex_state = 17}, [2246] = {.lex_state = 17}, - [2247] = {.lex_state = 17}, - [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 12}, + [2247] = {.lex_state = 8}, + [2248] = {.lex_state = 12}, + [2249] = {.lex_state = 17}, [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 31}, - [2252] = {.lex_state = 17}, + [2251] = {.lex_state = 17}, + [2252] = {.lex_state = 31}, [2253] = {.lex_state = 31}, - [2254] = {.lex_state = 31}, - [2255] = {.lex_state = 17}, + [2254] = {.lex_state = 19}, + [2255] = {.lex_state = 19}, [2256] = {.lex_state = 31}, - [2257] = {.lex_state = 17}, - [2258] = {.lex_state = 17}, + [2257] = {.lex_state = 31}, + [2258] = {.lex_state = 31}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 19}, - [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 31}, + [2260] = {.lex_state = 12}, + [2261] = {.lex_state = 31}, + [2262] = {.lex_state = 8}, [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 17}, + [2264] = {.lex_state = 31}, [2265] = {.lex_state = 17}, [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 27}, - [2268] = {.lex_state = 17}, + [2267] = {.lex_state = 17}, + [2268] = {.lex_state = 27}, [2269] = {.lex_state = 17}, [2270] = {.lex_state = 17}, [2271] = {.lex_state = 17}, @@ -12662,11 +12665,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2273] = {.lex_state = 17}, [2274] = {.lex_state = 17}, [2275] = {.lex_state = 17}, - [2276] = {.lex_state = 17}, + [2276] = {.lex_state = 27}, [2277] = {.lex_state = 17}, [2278] = {.lex_state = 17}, [2279] = {.lex_state = 17}, - [2280] = {.lex_state = 17}, + [2280] = {.lex_state = 27}, [2281] = {.lex_state = 17}, [2282] = {.lex_state = 17}, [2283] = {.lex_state = 17}, @@ -12674,636 +12677,636 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2285] = {.lex_state = 17}, [2286] = {.lex_state = 17}, [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 24}, - [2289] = {.lex_state = 27}, + [2288] = {.lex_state = 27}, + [2289] = {.lex_state = 17}, [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 27}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 27}, + [2291] = {.lex_state = 17}, + [2292] = {.lex_state = 17}, + [2293] = {.lex_state = 17}, [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 17}, - [2296] = {.lex_state = 17}, - [2297] = {.lex_state = 17}, - [2298] = {.lex_state = 27}, + [2295] = {.lex_state = 27}, + [2296] = {.lex_state = 27}, + [2297] = {.lex_state = 27}, + [2298] = {.lex_state = 17}, [2299] = {.lex_state = 17}, [2300] = {.lex_state = 17}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 17}, + [2302] = {.lex_state = 24}, [2303] = {.lex_state = 17}, - [2304] = {.lex_state = 27}, - [2305] = {.lex_state = 27}, - [2306] = {.lex_state = 27}, + [2304] = {.lex_state = 17}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 17}, [2307] = {.lex_state = 17}, [2308] = {.lex_state = 17}, - [2309] = {.lex_state = 12}, - [2310] = {.lex_state = 27}, - [2311] = {.lex_state = 17}, - [2312] = {.lex_state = 17}, + [2309] = {.lex_state = 17}, + [2310] = {.lex_state = 17}, + [2311] = {.lex_state = 27}, + [2312] = {.lex_state = 27}, [2313] = {.lex_state = 17}, - [2314] = {.lex_state = 17}, - [2315] = {.lex_state = 27}, - [2316] = {.lex_state = 17}, - [2317] = {.lex_state = 27}, - [2318] = {.lex_state = 72}, + [2314] = {.lex_state = 27}, + [2315] = {.lex_state = 17}, + [2316] = {.lex_state = 27}, + [2317] = {.lex_state = 17}, + [2318] = {.lex_state = 12}, [2319] = {.lex_state = 72}, [2320] = {.lex_state = 72}, - [2321] = {.lex_state = 72}, + [2321] = {.lex_state = 17}, [2322] = {.lex_state = 72}, - [2323] = {.lex_state = 72}, - [2324] = {.lex_state = 12}, - [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 72}, - [2327] = {.lex_state = 169}, - [2328] = {.lex_state = 27}, + [2323] = {.lex_state = 5}, + [2324] = {.lex_state = 27}, + [2325] = {.lex_state = 5}, + [2326] = {.lex_state = 12}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 12}, [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 72}, - [2332] = {.lex_state = 72}, - [2333] = {.lex_state = 17}, + [2330] = {.lex_state = 27}, + [2331] = {.lex_state = 17}, + [2332] = {.lex_state = 17}, + [2333] = {.lex_state = 72}, [2334] = {.lex_state = 72}, - [2335] = {.lex_state = 72}, - [2336] = {.lex_state = 27}, + [2335] = {.lex_state = 5}, + [2336] = {.lex_state = 72}, [2337] = {.lex_state = 72}, - [2338] = {.lex_state = 31}, - [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 27}, - [2341] = {.lex_state = 12}, - [2342] = {.lex_state = 17}, - [2343] = {.lex_state = 19}, - [2344] = {.lex_state = 5}, + [2338] = {.lex_state = 17}, + [2339] = {.lex_state = 72}, + [2340] = {.lex_state = 12}, + [2341] = {.lex_state = 169}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 31}, + [2344] = {.lex_state = 17}, [2345] = {.lex_state = 72}, [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 17}, - [2348] = {.lex_state = 72}, + [2347] = {.lex_state = 72}, + [2348] = {.lex_state = 27}, [2349] = {.lex_state = 27}, - [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 17}, + [2350] = {.lex_state = 27}, + [2351] = {.lex_state = 27}, [2352] = {.lex_state = 72}, - [2353] = {.lex_state = 5}, - [2354] = {.lex_state = 12}, - [2355] = {.lex_state = 72}, - [2356] = {.lex_state = 72}, - [2357] = {.lex_state = 72}, + [2353] = {.lex_state = 72}, + [2354] = {.lex_state = 72}, + [2355] = {.lex_state = 17}, + [2356] = {.lex_state = 19}, + [2357] = {.lex_state = 17}, [2358] = {.lex_state = 72}, [2359] = {.lex_state = 72}, [2360] = {.lex_state = 72}, - [2361] = {.lex_state = 31}, + [2361] = {.lex_state = 27}, [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 27}, - [2364] = {.lex_state = 27}, - [2365] = {.lex_state = 17}, + [2363] = {.lex_state = 72}, + [2364] = {.lex_state = 72}, + [2365] = {.lex_state = 72}, [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 17}, + [2367] = {.lex_state = 72}, [2368] = {.lex_state = 72}, [2369] = {.lex_state = 72}, - [2370] = {.lex_state = 5}, + [2370] = {.lex_state = 17}, [2371] = {.lex_state = 72}, - [2372] = {.lex_state = 17}, + [2372] = {.lex_state = 72}, [2373] = {.lex_state = 72}, - [2374] = {.lex_state = 72}, - [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 17}, + [2374] = {.lex_state = 17}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 31}, [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 17}, - [2379] = {.lex_state = 31}, - [2380] = {.lex_state = 31}, + [2378] = {.lex_state = 31}, + [2379] = {.lex_state = 17}, + [2380] = {.lex_state = 19}, [2381] = {.lex_state = 19}, - [2382] = {.lex_state = 17}, - [2383] = {.lex_state = 17}, - [2384] = {.lex_state = 19}, - [2385] = {.lex_state = 17}, - [2386] = {.lex_state = 19}, - [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 5}, - [2390] = {.lex_state = 31}, + [2382] = {.lex_state = 19}, + [2383] = {.lex_state = 19}, + [2384] = {.lex_state = 72}, + [2385] = {.lex_state = 19}, + [2386] = {.lex_state = 31}, + [2387] = {.lex_state = 72}, + [2388] = {.lex_state = 27}, + [2389] = {.lex_state = 31}, + [2390] = {.lex_state = 17}, [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 31}, - [2393] = {.lex_state = 31}, - [2394] = {.lex_state = 19}, - [2395] = {.lex_state = 17}, - [2396] = {.lex_state = 17}, + [2392] = {.lex_state = 17}, + [2393] = {.lex_state = 19}, + [2394] = {.lex_state = 17}, + [2395] = {.lex_state = 5}, + [2396] = {.lex_state = 20}, [2397] = {.lex_state = 31}, [2398] = {.lex_state = 17}, [2399] = {.lex_state = 17}, [2400] = {.lex_state = 17}, - [2401] = {.lex_state = 17}, + [2401] = {.lex_state = 31}, [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 72}, - [2404] = {.lex_state = 5}, + [2403] = {.lex_state = 17}, + [2404] = {.lex_state = 17}, [2405] = {.lex_state = 17}, - [2406] = {.lex_state = 17}, - [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 27}, + [2406] = {.lex_state = 20}, + [2407] = {.lex_state = 31}, + [2408] = {.lex_state = 20}, [2409] = {.lex_state = 17}, [2410] = {.lex_state = 17}, [2411] = {.lex_state = 17}, [2412] = {.lex_state = 17}, [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 19}, - [2416] = {.lex_state = 17}, + [2414] = {.lex_state = 20}, + [2415] = {.lex_state = 31}, + [2416] = {.lex_state = 31}, [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 15}, + [2418] = {.lex_state = 17}, [2419] = {.lex_state = 17}, [2420] = {.lex_state = 17}, [2421] = {.lex_state = 17}, [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 21}, - [2424] = {.lex_state = 21}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, [2426] = {.lex_state = 17}, [2427] = {.lex_state = 17}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 19}, - [2431] = {.lex_state = 17}, - [2432] = {.lex_state = 17}, - [2433] = {.lex_state = 31}, + [2429] = {.lex_state = 31}, + [2430] = {.lex_state = 17}, + [2431] = {.lex_state = 31}, + [2432] = {.lex_state = 31}, + [2433] = {.lex_state = 17}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 15}, - [2436] = {.lex_state = 17}, + [2435] = {.lex_state = 5}, + [2436] = {.lex_state = 31}, [2437] = {.lex_state = 17}, - [2438] = {.lex_state = 21}, - [2439] = {.lex_state = 17}, + [2438] = {.lex_state = 31}, + [2439] = {.lex_state = 31}, [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 31}, - [2442] = {.lex_state = 21}, - [2443] = {.lex_state = 31}, + [2441] = {.lex_state = 17}, + [2442] = {.lex_state = 17}, + [2443] = {.lex_state = 17}, [2444] = {.lex_state = 17}, [2445] = {.lex_state = 17}, [2446] = {.lex_state = 17}, - [2447] = {.lex_state = 17}, - [2448] = {.lex_state = 17}, - [2449] = {.lex_state = 31}, + [2447] = {.lex_state = 19}, + [2448] = {.lex_state = 15}, + [2449] = {.lex_state = 17}, [2450] = {.lex_state = 17}, - [2451] = {.lex_state = 31}, - [2452] = {.lex_state = 31}, - [2453] = {.lex_state = 17}, + [2451] = {.lex_state = 15}, + [2452] = {.lex_state = 17}, + [2453] = {.lex_state = 20}, [2454] = {.lex_state = 17}, [2455] = {.lex_state = 17}, [2456] = {.lex_state = 17}, [2457] = {.lex_state = 17}, - [2458] = {.lex_state = 31}, + [2458] = {.lex_state = 5}, [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 17}, - [2461] = {.lex_state = 17}, - [2462] = {.lex_state = 31}, - [2463] = {.lex_state = 5}, - [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 19}, + [2460] = {.lex_state = 5}, + [2461] = {.lex_state = 31}, + [2462] = {.lex_state = 17}, + [2463] = {.lex_state = 17}, + [2464] = {.lex_state = 31}, + [2465] = {.lex_state = 17}, [2466] = {.lex_state = 17}, - [2467] = {.lex_state = 21}, - [2468] = {.lex_state = 31}, - [2469] = {.lex_state = 72}, - [2470] = {.lex_state = 31}, + [2467] = {.lex_state = 17}, + [2468] = {.lex_state = 17}, + [2469] = {.lex_state = 17}, + [2470] = {.lex_state = 17}, [2471] = {.lex_state = 17}, [2472] = {.lex_state = 17}, - [2473] = {.lex_state = 17}, - [2474] = {.lex_state = 31}, - [2475] = {.lex_state = 21}, - [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 23}, - [2478] = {.lex_state = 31}, - [2479] = {.lex_state = 31}, - [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 17}, - [2482] = {.lex_state = 17}, - [2483] = {.lex_state = 31}, + [2473] = {.lex_state = 20}, + [2474] = {.lex_state = 17}, + [2475] = {.lex_state = 17}, + [2476] = {.lex_state = 31}, + [2477] = {.lex_state = 17}, + [2478] = {.lex_state = 17}, + [2479] = {.lex_state = 23}, + [2480] = {.lex_state = 23}, + [2481] = {.lex_state = 23}, + [2482] = {.lex_state = 8}, + [2483] = {.lex_state = 23, .external_lex_state = 3}, [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 17}, + [2485] = {.lex_state = 23}, [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 23}, - [2488] = {.lex_state = 31}, - [2489] = {.lex_state = 23}, + [2487] = {.lex_state = 17}, + [2488] = {.lex_state = 17}, + [2489] = {.lex_state = 31}, [2490] = {.lex_state = 17}, - [2491] = {.lex_state = 19}, - [2492] = {.lex_state = 19}, + [2491] = {.lex_state = 17}, + [2492] = {.lex_state = 31}, [2493] = {.lex_state = 19}, - [2494] = {.lex_state = 23}, - [2495] = {.lex_state = 19}, - [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 17}, - [2498] = {.lex_state = 17}, - [2499] = {.lex_state = 23}, - [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 17}, - [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 23}, - [2504] = {.lex_state = 31}, - [2505] = {.lex_state = 31}, + [2494] = {.lex_state = 8}, + [2495] = {.lex_state = 17}, + [2496] = {.lex_state = 31}, + [2497] = {.lex_state = 19}, + [2498] = {.lex_state = 31}, + [2499] = {.lex_state = 19}, + [2500] = {.lex_state = 31}, + [2501] = {.lex_state = 23}, + [2502] = {.lex_state = 31}, + [2503] = {.lex_state = 31}, + [2504] = {.lex_state = 23}, + [2505] = {.lex_state = 17}, [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 17}, + [2507] = {.lex_state = 31}, [2508] = {.lex_state = 31}, [2509] = {.lex_state = 31}, - [2510] = {.lex_state = 31}, - [2511] = {.lex_state = 5}, + [2510] = {.lex_state = 17}, + [2511] = {.lex_state = 72}, [2512] = {.lex_state = 31}, [2513] = {.lex_state = 17}, [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 8}, + [2515] = {.lex_state = 31}, [2516] = {.lex_state = 31}, - [2517] = {.lex_state = 31}, - [2518] = {.lex_state = 23}, + [2517] = {.lex_state = 23}, + [2518] = {.lex_state = 31}, [2519] = {.lex_state = 23}, - [2520] = {.lex_state = 31}, + [2520] = {.lex_state = 17}, [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 23}, + [2522] = {.lex_state = 72}, [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 31}, - [2525] = {.lex_state = 31}, + [2524] = {.lex_state = 17}, + [2525] = {.lex_state = 23}, [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 23}, - [2528] = {.lex_state = 23}, - [2529] = {.lex_state = 23}, - [2530] = {.lex_state = 8}, - [2531] = {.lex_state = 23}, + [2527] = {.lex_state = 31}, + [2528] = {.lex_state = 17}, + [2529] = {.lex_state = 17}, + [2530] = {.lex_state = 23}, + [2531] = {.lex_state = 5}, [2532] = {.lex_state = 23}, [2533] = {.lex_state = 23}, - [2534] = {.lex_state = 23}, - [2535] = {.lex_state = 23}, - [2536] = {.lex_state = 23}, - [2537] = {.lex_state = 23}, - [2538] = {.lex_state = 23}, - [2539] = {.lex_state = 23}, - [2540] = {.lex_state = 23}, - [2541] = {.lex_state = 17}, - [2542] = {.lex_state = 17}, - [2543] = {.lex_state = 8}, - [2544] = {.lex_state = 31}, - [2545] = {.lex_state = 31}, - [2546] = {.lex_state = 23, .external_lex_state = 3}, + [2534] = {.lex_state = 19}, + [2535] = {.lex_state = 17}, + [2536] = {.lex_state = 17}, + [2537] = {.lex_state = 8}, + [2538] = {.lex_state = 17}, + [2539] = {.lex_state = 31}, + [2540] = {.lex_state = 17}, + [2541] = {.lex_state = 23}, + [2542] = {.lex_state = 31}, + [2543] = {.lex_state = 17}, + [2544] = {.lex_state = 23}, + [2545] = {.lex_state = 23}, + [2546] = {.lex_state = 17}, [2547] = {.lex_state = 31}, [2548] = {.lex_state = 31}, - [2549] = {.lex_state = 31}, - [2550] = {.lex_state = 23}, + [2549] = {.lex_state = 17}, + [2550] = {.lex_state = 31}, [2551] = {.lex_state = 17}, [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 17}, - [2554] = {.lex_state = 17}, + [2553] = {.lex_state = 23}, + [2554] = {.lex_state = 5}, [2555] = {.lex_state = 31}, - [2556] = {.lex_state = 17}, - [2557] = {.lex_state = 17}, - [2558] = {.lex_state = 31}, - [2559] = {.lex_state = 31}, - [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 19}, - [2562] = {.lex_state = 17}, - [2563] = {.lex_state = 19}, + [2556] = {.lex_state = 31}, + [2557] = {.lex_state = 31}, + [2558] = {.lex_state = 23}, + [2559] = {.lex_state = 23}, + [2560] = {.lex_state = 23}, + [2561] = {.lex_state = 17}, + [2562] = {.lex_state = 31}, + [2563] = {.lex_state = 8}, [2564] = {.lex_state = 31}, - [2565] = {.lex_state = 17}, - [2566] = {.lex_state = 17}, - [2567] = {.lex_state = 17}, + [2565] = {.lex_state = 31}, + [2566] = {.lex_state = 23}, + [2567] = {.lex_state = 31}, [2568] = {.lex_state = 23}, [2569] = {.lex_state = 23}, - [2570] = {.lex_state = 31}, - [2571] = {.lex_state = 31}, - [2572] = {.lex_state = 5}, - [2573] = {.lex_state = 8}, - [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 72}, - [2576] = {.lex_state = 31}, + [2570] = {.lex_state = 19}, + [2571] = {.lex_state = 17}, + [2572] = {.lex_state = 17}, + [2573] = {.lex_state = 23}, + [2574] = {.lex_state = 23}, + [2575] = {.lex_state = 17}, + [2576] = {.lex_state = 17}, [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 23}, + [2578] = {.lex_state = 31}, [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 72}, - [2582] = {.lex_state = 23}, + [2580] = {.lex_state = 23}, + [2581] = {.lex_state = 23}, + [2582] = {.lex_state = 19}, [2583] = {.lex_state = 8}, - [2584] = {.lex_state = 23}, + [2584] = {.lex_state = 17}, [2585] = {.lex_state = 23}, - [2586] = {.lex_state = 8}, + [2586] = {.lex_state = 23}, [2587] = {.lex_state = 23}, - [2588] = {.lex_state = 33}, - [2589] = {.lex_state = 8}, - [2590] = {.lex_state = 72}, - [2591] = {.lex_state = 72}, - [2592] = {.lex_state = 23}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 33}, - [2595] = {.lex_state = 72}, - [2596] = {.lex_state = 72}, - [2597] = {.lex_state = 23, .external_lex_state = 4}, - [2598] = {.lex_state = 23}, - [2599] = {.lex_state = 23}, - [2600] = {.lex_state = 23, .external_lex_state = 4}, - [2601] = {.lex_state = 23}, - [2602] = {.lex_state = 23}, + [2588] = {.lex_state = 17}, + [2589] = {.lex_state = 17}, + [2590] = {.lex_state = 19}, + [2591] = {.lex_state = 17}, + [2592] = {.lex_state = 17}, + [2593] = {.lex_state = 17}, + [2594] = {.lex_state = 17}, + [2595] = {.lex_state = 17}, + [2596] = {.lex_state = 17}, + [2597] = {.lex_state = 17}, + [2598] = {.lex_state = 72}, + [2599] = {.lex_state = 8}, + [2600] = {.lex_state = 23}, + [2601] = {.lex_state = 72}, + [2602] = {.lex_state = 17}, [2603] = {.lex_state = 23}, - [2604] = {.lex_state = 17}, - [2605] = {.lex_state = 5}, - [2606] = {.lex_state = 17}, + [2604] = {.lex_state = 33}, + [2605] = {.lex_state = 23, .external_lex_state = 4}, + [2606] = {.lex_state = 72}, [2607] = {.lex_state = 72}, - [2608] = {.lex_state = 8}, - [2609] = {.lex_state = 18}, + [2608] = {.lex_state = 17}, + [2609] = {.lex_state = 17}, [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 23}, - [2612] = {.lex_state = 72}, + [2611] = {.lex_state = 17}, + [2612] = {.lex_state = 17}, [2613] = {.lex_state = 23}, - [2614] = {.lex_state = 23}, - [2615] = {.lex_state = 8}, - [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 72}, + [2614] = {.lex_state = 17}, + [2615] = {.lex_state = 17}, + [2616] = {.lex_state = 17}, + [2617] = {.lex_state = 17}, [2618] = {.lex_state = 23}, [2619] = {.lex_state = 23, .external_lex_state = 4}, - [2620] = {.lex_state = 72}, - [2621] = {.lex_state = 8}, - [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 8}, - [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 72}, + [2620] = {.lex_state = 17}, + [2621] = {.lex_state = 17}, + [2622] = {.lex_state = 23}, + [2623] = {.lex_state = 31}, + [2624] = {.lex_state = 23}, + [2625] = {.lex_state = 8}, [2626] = {.lex_state = 8}, - [2627] = {.lex_state = 8}, - [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 8}, - [2630] = {.lex_state = 5}, - [2631] = {.lex_state = 8}, - [2632] = {.lex_state = 8}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 23}, - [2635] = {.lex_state = 17}, - [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 17}, - [2638] = {.lex_state = 23}, + [2627] = {.lex_state = 72}, + [2628] = {.lex_state = 23}, + [2629] = {.lex_state = 17}, + [2630] = {.lex_state = 72}, + [2631] = {.lex_state = 17}, + [2632] = {.lex_state = 17}, + [2633] = {.lex_state = 23}, + [2634] = {.lex_state = 72}, + [2635] = {.lex_state = 31}, + [2636] = {.lex_state = 5}, + [2637] = {.lex_state = 31}, + [2638] = {.lex_state = 17}, [2639] = {.lex_state = 17}, - [2640] = {.lex_state = 8}, - [2641] = {.lex_state = 23}, - [2642] = {.lex_state = 72}, + [2640] = {.lex_state = 18}, + [2641] = {.lex_state = 17}, + [2642] = {.lex_state = 23}, [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 8}, - [2645] = {.lex_state = 8}, - [2646] = {.lex_state = 8}, - [2647] = {.lex_state = 31}, - [2648] = {.lex_state = 72}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 17}, + [2646] = {.lex_state = 23}, + [2647] = {.lex_state = 72}, + [2648] = {.lex_state = 23, .external_lex_state = 4}, [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 17}, - [2651] = {.lex_state = 72}, - [2652] = {.lex_state = 31}, - [2653] = {.lex_state = 17}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 17}, - [2656] = {.lex_state = 17}, - [2657] = {.lex_state = 17}, - [2658] = {.lex_state = 31}, - [2659] = {.lex_state = 17}, - [2660] = {.lex_state = 17}, - [2661] = {.lex_state = 17}, - [2662] = {.lex_state = 17}, + [2650] = {.lex_state = 23}, + [2651] = {.lex_state = 23}, + [2652] = {.lex_state = 72}, + [2653] = {.lex_state = 31}, + [2654] = {.lex_state = 17}, + [2655] = {.lex_state = 72}, + [2656] = {.lex_state = 31}, + [2657] = {.lex_state = 23}, + [2658] = {.lex_state = 72}, + [2659] = {.lex_state = 23, .external_lex_state = 4}, + [2660] = {.lex_state = 23}, + [2661] = {.lex_state = 23}, + [2662] = {.lex_state = 23, .external_lex_state = 4}, [2663] = {.lex_state = 23}, - [2664] = {.lex_state = 17}, - [2665] = {.lex_state = 17}, + [2664] = {.lex_state = 23}, + [2665] = {.lex_state = 23}, [2666] = {.lex_state = 72}, - [2667] = {.lex_state = 17}, - [2668] = {.lex_state = 17}, - [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 17}, - [2672] = {.lex_state = 17}, - [2673] = {.lex_state = 17}, + [2667] = {.lex_state = 18}, + [2668] = {.lex_state = 8}, + [2669] = {.lex_state = 23}, + [2670] = {.lex_state = 23}, + [2671] = {.lex_state = 72}, + [2672] = {.lex_state = 23}, + [2673] = {.lex_state = 23}, [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 17}, - [2676] = {.lex_state = 17}, - [2677] = {.lex_state = 33}, - [2678] = {.lex_state = 17}, - [2679] = {.lex_state = 72}, - [2680] = {.lex_state = 17}, - [2681] = {.lex_state = 17}, - [2682] = {.lex_state = 19}, - [2683] = {.lex_state = 17}, - [2684] = {.lex_state = 19}, - [2685] = {.lex_state = 19}, - [2686] = {.lex_state = 19}, - [2687] = {.lex_state = 17}, - [2688] = {.lex_state = 17}, - [2689] = {.lex_state = 17}, + [2675] = {.lex_state = 23}, + [2676] = {.lex_state = 23, .external_lex_state = 4}, + [2677] = {.lex_state = 72}, + [2678] = {.lex_state = 8}, + [2679] = {.lex_state = 8}, + [2680] = {.lex_state = 8}, + [2681] = {.lex_state = 8}, + [2682] = {.lex_state = 72}, + [2683] = {.lex_state = 31}, + [2684] = {.lex_state = 8}, + [2685] = {.lex_state = 72}, + [2686] = {.lex_state = 8}, + [2687] = {.lex_state = 8}, + [2688] = {.lex_state = 8}, + [2689] = {.lex_state = 31}, [2690] = {.lex_state = 23}, - [2691] = {.lex_state = 17}, - [2692] = {.lex_state = 17}, - [2693] = {.lex_state = 17}, - [2694] = {.lex_state = 17}, - [2695] = {.lex_state = 31}, - [2696] = {.lex_state = 17}, + [2691] = {.lex_state = 23}, + [2692] = {.lex_state = 72}, + [2693] = {.lex_state = 72}, + [2694] = {.lex_state = 72}, + [2695] = {.lex_state = 72}, + [2696] = {.lex_state = 23}, [2697] = {.lex_state = 72}, - [2698] = {.lex_state = 8}, - [2699] = {.lex_state = 72}, - [2700] = {.lex_state = 8}, - [2701] = {.lex_state = 23}, - [2702] = {.lex_state = 23}, - [2703] = {.lex_state = 23, .external_lex_state = 4}, - [2704] = {.lex_state = 72}, - [2705] = {.lex_state = 23}, + [2698] = {.lex_state = 17}, + [2699] = {.lex_state = 17}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 8}, + [2702] = {.lex_state = 8}, + [2703] = {.lex_state = 17}, + [2704] = {.lex_state = 17}, + [2705] = {.lex_state = 72}, [2706] = {.lex_state = 23}, - [2707] = {.lex_state = 18}, - [2708] = {.lex_state = 72}, - [2709] = {.lex_state = 23}, - [2710] = {.lex_state = 31}, - [2711] = {.lex_state = 72}, - [2712] = {.lex_state = 23}, + [2707] = {.lex_state = 23}, + [2708] = {.lex_state = 23}, + [2709] = {.lex_state = 23, .external_lex_state = 4}, + [2710] = {.lex_state = 23}, + [2711] = {.lex_state = 23}, + [2712] = {.lex_state = 72}, [2713] = {.lex_state = 23}, [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 23, .external_lex_state = 4}, - [2716] = {.lex_state = 72}, - [2717] = {.lex_state = 8}, + [2715] = {.lex_state = 23}, + [2716] = {.lex_state = 23, .external_lex_state = 4}, + [2717] = {.lex_state = 72}, [2718] = {.lex_state = 8}, - [2719] = {.lex_state = 31}, + [2719] = {.lex_state = 8}, [2720] = {.lex_state = 8}, [2721] = {.lex_state = 8}, - [2722] = {.lex_state = 72}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 8}, - [2725] = {.lex_state = 8}, - [2726] = {.lex_state = 8}, - [2727] = {.lex_state = 23}, - [2728] = {.lex_state = 23}, - [2729] = {.lex_state = 23}, - [2730] = {.lex_state = 72}, - [2731] = {.lex_state = 23, .external_lex_state = 4}, - [2732] = {.lex_state = 17}, - [2733] = {.lex_state = 23}, - [2734] = {.lex_state = 33}, - [2735] = {.lex_state = 72}, - [2736] = {.lex_state = 17}, - [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 72}, - [2739] = {.lex_state = 17}, - [2740] = {.lex_state = 17}, - [2741] = {.lex_state = 23}, - [2742] = {.lex_state = 23}, + [2722] = {.lex_state = 8}, + [2723] = {.lex_state = 23}, + [2724] = {.lex_state = 72}, + [2725] = {.lex_state = 31}, + [2726] = {.lex_state = 23}, + [2727] = {.lex_state = 19}, + [2728] = {.lex_state = 19}, + [2729] = {.lex_state = 23, .external_lex_state = 4}, + [2730] = {.lex_state = 23}, + [2731] = {.lex_state = 72}, + [2732] = {.lex_state = 72}, + [2733] = {.lex_state = 23, .external_lex_state = 4}, + [2734] = {.lex_state = 72}, + [2735] = {.lex_state = 23}, + [2736] = {.lex_state = 8}, + [2737] = {.lex_state = 8}, + [2738] = {.lex_state = 8}, + [2739] = {.lex_state = 8}, + [2740] = {.lex_state = 8}, + [2741] = {.lex_state = 17}, + [2742] = {.lex_state = 23, .external_lex_state = 4}, [2743] = {.lex_state = 23, .external_lex_state = 4}, - [2744] = {.lex_state = 23}, - [2745] = {.lex_state = 23}, - [2746] = {.lex_state = 72}, - [2747] = {.lex_state = 23}, - [2748] = {.lex_state = 23}, - [2749] = {.lex_state = 23}, - [2750] = {.lex_state = 23, .external_lex_state = 4}, - [2751] = {.lex_state = 72}, - [2752] = {.lex_state = 8}, - [2753] = {.lex_state = 8}, - [2754] = {.lex_state = 8}, + [2744] = {.lex_state = 8}, + [2745] = {.lex_state = 8}, + [2746] = {.lex_state = 17}, + [2747] = {.lex_state = 72}, + [2748] = {.lex_state = 17}, + [2749] = {.lex_state = 8}, + [2750] = {.lex_state = 33}, + [2751] = {.lex_state = 8}, + [2752] = {.lex_state = 23}, + [2753] = {.lex_state = 19}, + [2754] = {.lex_state = 19}, [2755] = {.lex_state = 8}, - [2756] = {.lex_state = 23}, - [2757] = {.lex_state = 72}, - [2758] = {.lex_state = 23}, - [2759] = {.lex_state = 23, .external_lex_state = 4}, - [2760] = {.lex_state = 23}, - [2761] = {.lex_state = 23}, + [2756] = {.lex_state = 8}, + [2757] = {.lex_state = 23}, + [2758] = {.lex_state = 17}, + [2759] = {.lex_state = 17}, + [2760] = {.lex_state = 23, .external_lex_state = 4}, + [2761] = {.lex_state = 17}, [2762] = {.lex_state = 72}, - [2763] = {.lex_state = 23, .external_lex_state = 4}, - [2764] = {.lex_state = 72}, - [2765] = {.lex_state = 8}, + [2763] = {.lex_state = 5}, + [2764] = {.lex_state = 8}, + [2765] = {.lex_state = 72}, [2766] = {.lex_state = 8}, - [2767] = {.lex_state = 8}, - [2768] = {.lex_state = 8}, - [2769] = {.lex_state = 72}, - [2770] = {.lex_state = 23, .external_lex_state = 4}, - [2771] = {.lex_state = 23, .external_lex_state = 4}, - [2772] = {.lex_state = 8}, - [2773] = {.lex_state = 8}, - [2774] = {.lex_state = 72}, - [2775] = {.lex_state = 31}, - [2776] = {.lex_state = 8}, - [2777] = {.lex_state = 72}, - [2778] = {.lex_state = 23}, - [2779] = {.lex_state = 23, .external_lex_state = 4}, + [2767] = {.lex_state = 33}, + [2768] = {.lex_state = 17}, + [2769] = {.lex_state = 17}, + [2770] = {.lex_state = 19}, + [2771] = {.lex_state = 19}, + [2772] = {.lex_state = 19}, + [2773] = {.lex_state = 5}, + [2774] = {.lex_state = 19}, + [2775] = {.lex_state = 72}, + [2776] = {.lex_state = 23}, + [2777] = {.lex_state = 8}, + [2778] = {.lex_state = 17}, + [2779] = {.lex_state = 72}, [2780] = {.lex_state = 8}, - [2781] = {.lex_state = 8}, + [2781] = {.lex_state = 72}, [2782] = {.lex_state = 17}, - [2783] = {.lex_state = 18}, - [2784] = {.lex_state = 23}, - [2785] = {.lex_state = 5}, - [2786] = {.lex_state = 72}, - [2787] = {.lex_state = 72}, - [2788] = {.lex_state = 17}, - [2789] = {.lex_state = 17}, - [2790] = {.lex_state = 72}, - [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 23}, + [2783] = {.lex_state = 8}, + [2784] = {.lex_state = 17}, + [2785] = {.lex_state = 23}, + [2786] = {.lex_state = 23}, + [2787] = {.lex_state = 23}, + [2788] = {.lex_state = 23}, + [2789] = {.lex_state = 8}, + [2790] = {.lex_state = 8}, + [2791] = {.lex_state = 72}, + [2792] = {.lex_state = 31}, [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 19}, - [2795] = {.lex_state = 23}, - [2796] = {.lex_state = 19}, - [2797] = {.lex_state = 19}, - [2798] = {.lex_state = 31}, - [2799] = {.lex_state = 72}, - [2800] = {.lex_state = 23}, - [2801] = {.lex_state = 19}, - [2802] = {.lex_state = 72}, - [2803] = {.lex_state = 8}, - [2804] = {.lex_state = 8}, - [2805] = {.lex_state = 19}, - [2806] = {.lex_state = 17}, - [2807] = {.lex_state = 23}, - [2808] = {.lex_state = 17}, - [2809] = {.lex_state = 19}, - [2810] = {.lex_state = 19}, - [2811] = {.lex_state = 19}, - [2812] = {.lex_state = 72}, - [2813] = {.lex_state = 72}, + [2794] = {.lex_state = 8}, + [2795] = {.lex_state = 31}, + [2796] = {.lex_state = 23}, + [2797] = {.lex_state = 23}, + [2798] = {.lex_state = 8}, + [2799] = {.lex_state = 23}, + [2800] = {.lex_state = 17}, + [2801] = {.lex_state = 72}, + [2802] = {.lex_state = 17}, + [2803] = {.lex_state = 23}, + [2804] = {.lex_state = 23}, + [2805] = {.lex_state = 23}, + [2806] = {.lex_state = 72}, + [2807] = {.lex_state = 17}, + [2808] = {.lex_state = 23}, + [2809] = {.lex_state = 23}, + [2810] = {.lex_state = 23}, + [2811] = {.lex_state = 23}, + [2812] = {.lex_state = 18}, + [2813] = {.lex_state = 18}, [2814] = {.lex_state = 23}, - [2815] = {.lex_state = 23}, - [2816] = {.lex_state = 31}, - [2817] = {.lex_state = 23}, - [2818] = {.lex_state = 23}, - [2819] = {.lex_state = 23}, - [2820] = {.lex_state = 23}, - [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 18}, - [2823] = {.lex_state = 18}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 5}, - [2826] = {.lex_state = 17}, - [2827] = {.lex_state = 23}, - [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 17}, - [2831] = {.lex_state = 17}, + [2815] = {.lex_state = 72}, + [2816] = {.lex_state = 5}, + [2817] = {.lex_state = 31}, + [2818] = {.lex_state = 72}, + [2819] = {.lex_state = 17}, + [2820] = {.lex_state = 17}, + [2821] = {.lex_state = 33}, + [2822] = {.lex_state = 8}, + [2823] = {.lex_state = 8}, + [2824] = {.lex_state = 5}, + [2825] = {.lex_state = 17}, + [2826] = {.lex_state = 72}, + [2827] = {.lex_state = 8}, + [2828] = {.lex_state = 17}, + [2829] = {.lex_state = 72}, + [2830] = {.lex_state = 72}, + [2831] = {.lex_state = 8}, [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 31}, - [2834] = {.lex_state = 8}, - [2835] = {.lex_state = 17}, + [2833] = {.lex_state = 19}, + [2834] = {.lex_state = 17}, + [2835] = {.lex_state = 8}, [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 8}, - [2838] = {.lex_state = 31}, - [2839] = {.lex_state = 8}, + [2837] = {.lex_state = 72}, + [2838] = {.lex_state = 8}, + [2839] = {.lex_state = 72}, [2840] = {.lex_state = 17}, - [2841] = {.lex_state = 17}, - [2842] = {.lex_state = 23}, + [2841] = {.lex_state = 19}, + [2842] = {.lex_state = 19}, [2843] = {.lex_state = 8}, - [2844] = {.lex_state = 72}, + [2844] = {.lex_state = 17}, [2845] = {.lex_state = 17}, - [2846] = {.lex_state = 72}, + [2846] = {.lex_state = 18}, [2847] = {.lex_state = 72}, - [2848] = {.lex_state = 72}, + [2848] = {.lex_state = 20}, [2849] = {.lex_state = 72}, [2850] = {.lex_state = 72}, [2851] = {.lex_state = 72}, - [2852] = {.lex_state = 19}, + [2852] = {.lex_state = 72}, [2853] = {.lex_state = 72}, [2854] = {.lex_state = 72}, [2855] = {.lex_state = 72}, [2856] = {.lex_state = 72}, [2857] = {.lex_state = 72}, - [2858] = {.lex_state = 19}, - [2859] = {.lex_state = 72}, + [2858] = {.lex_state = 17}, + [2859] = {.lex_state = 19}, [2860] = {.lex_state = 19}, [2861] = {.lex_state = 72}, [2862] = {.lex_state = 72}, [2863] = {.lex_state = 72}, [2864] = {.lex_state = 72}, - [2865] = {.lex_state = 72}, + [2865] = {.lex_state = 8}, [2866] = {.lex_state = 72}, - [2867] = {.lex_state = 8}, + [2867] = {.lex_state = 72}, [2868] = {.lex_state = 72}, [2869] = {.lex_state = 19}, - [2870] = {.lex_state = 19}, - [2871] = {.lex_state = 72}, - [2872] = {.lex_state = 72}, - [2873] = {.lex_state = 19}, + [2870] = {.lex_state = 17}, + [2871] = {.lex_state = 17}, + [2872] = {.lex_state = 8}, + [2873] = {.lex_state = 72}, [2874] = {.lex_state = 72}, [2875] = {.lex_state = 19}, [2876] = {.lex_state = 72}, - [2877] = {.lex_state = 72}, + [2877] = {.lex_state = 19}, [2878] = {.lex_state = 72}, - [2879] = {.lex_state = 17}, + [2879] = {.lex_state = 19}, [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 17}, + [2881] = {.lex_state = 19}, [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 23, .external_lex_state = 4}, + [2883] = {.lex_state = 72}, [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 17}, - [2886] = {.lex_state = 31}, + [2885] = {.lex_state = 19}, + [2886] = {.lex_state = 72}, [2887] = {.lex_state = 72}, [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 72}, - [2890] = {.lex_state = 17}, - [2891] = {.lex_state = 17}, + [2889] = {.lex_state = 19}, + [2890] = {.lex_state = 72}, + [2891] = {.lex_state = 72}, [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 21}, + [2893] = {.lex_state = 72}, [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 21}, + [2895] = {.lex_state = 72}, [2896] = {.lex_state = 72}, [2897] = {.lex_state = 72}, [2898] = {.lex_state = 72}, [2899] = {.lex_state = 72}, [2900] = {.lex_state = 72}, - [2901] = {.lex_state = 72}, + [2901] = {.lex_state = 17}, [2902] = {.lex_state = 72}, [2903] = {.lex_state = 72}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 17}, + [2905] = {.lex_state = 72}, [2906] = {.lex_state = 72}, [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 17}, + [2909] = {.lex_state = 72}, [2910] = {.lex_state = 72}, - [2911] = {.lex_state = 72}, + [2911] = {.lex_state = 8}, [2912] = {.lex_state = 72}, [2913] = {.lex_state = 72}, - [2914] = {.lex_state = 72}, + [2914] = {.lex_state = 23}, [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 21}, + [2917] = {.lex_state = 72}, [2918] = {.lex_state = 72}, [2919] = {.lex_state = 72}, [2920] = {.lex_state = 72}, @@ -13312,326 +13315,326 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2923] = {.lex_state = 72}, [2924] = {.lex_state = 72}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 17}, + [2926] = {.lex_state = 72}, [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 31}, - [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 17}, + [2928] = {.lex_state = 8}, + [2929] = {.lex_state = 17}, + [2930] = {.lex_state = 72}, [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 19}, - [2933] = {.lex_state = 19}, - [2934] = {.lex_state = 17}, + [2932] = {.lex_state = 72}, + [2933] = {.lex_state = 72}, + [2934] = {.lex_state = 72}, [2935] = {.lex_state = 72}, - [2936] = {.lex_state = 17}, - [2937] = {.lex_state = 19}, + [2936] = {.lex_state = 23, .external_lex_state = 4}, + [2937] = {.lex_state = 72}, [2938] = {.lex_state = 72}, - [2939] = {.lex_state = 72}, - [2940] = {.lex_state = 72}, + [2939] = {.lex_state = 17}, + [2940] = {.lex_state = 19}, [2941] = {.lex_state = 72}, [2942] = {.lex_state = 72}, - [2943] = {.lex_state = 72}, + [2943] = {.lex_state = 19}, [2944] = {.lex_state = 19}, [2945] = {.lex_state = 72}, - [2946] = {.lex_state = 19}, - [2947] = {.lex_state = 8}, + [2946] = {.lex_state = 72}, + [2947] = {.lex_state = 72}, [2948] = {.lex_state = 72}, [2949] = {.lex_state = 72}, - [2950] = {.lex_state = 19}, + [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, - [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 17}, + [2952] = {.lex_state = 19}, + [2953] = {.lex_state = 72}, [2954] = {.lex_state = 72}, [2955] = {.lex_state = 19}, - [2956] = {.lex_state = 72}, + [2956] = {.lex_state = 17}, [2957] = {.lex_state = 72}, [2958] = {.lex_state = 72}, - [2959] = {.lex_state = 72}, + [2959] = {.lex_state = 8}, [2960] = {.lex_state = 72}, [2961] = {.lex_state = 72}, - [2962] = {.lex_state = 72}, - [2963] = {.lex_state = 72}, + [2962] = {.lex_state = 19}, + [2963] = {.lex_state = 17}, [2964] = {.lex_state = 72}, [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, [2967] = {.lex_state = 72}, - [2968] = {.lex_state = 72}, + [2968] = {.lex_state = 17}, [2969] = {.lex_state = 72}, [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 72}, - [2972] = {.lex_state = 72}, + [2971] = {.lex_state = 19}, + [2972] = {.lex_state = 19}, [2973] = {.lex_state = 72}, - [2974] = {.lex_state = 17}, + [2974] = {.lex_state = 19}, [2975] = {.lex_state = 72}, - [2976] = {.lex_state = 72}, + [2976] = {.lex_state = 19}, [2977] = {.lex_state = 72}, - [2978] = {.lex_state = 8}, + [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 72}, - [2981] = {.lex_state = 19}, + [2980] = {.lex_state = 17}, + [2981] = {.lex_state = 72}, [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 72}, + [2984] = {.lex_state = 19}, [2985] = {.lex_state = 72}, [2986] = {.lex_state = 72}, - [2987] = {.lex_state = 72}, - [2988] = {.lex_state = 8}, + [2987] = {.lex_state = 19}, + [2988] = {.lex_state = 72}, [2989] = {.lex_state = 72}, - [2990] = {.lex_state = 19}, + [2990] = {.lex_state = 72}, [2991] = {.lex_state = 72}, - [2992] = {.lex_state = 72}, + [2992] = {.lex_state = 19}, [2993] = {.lex_state = 72}, [2994] = {.lex_state = 72}, - [2995] = {.lex_state = 72}, + [2995] = {.lex_state = 8}, [2996] = {.lex_state = 72}, - [2997] = {.lex_state = 72}, + [2997] = {.lex_state = 17}, [2998] = {.lex_state = 72}, - [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 17}, - [3001] = {.lex_state = 17}, + [2999] = {.lex_state = 19}, + [3000] = {.lex_state = 19}, + [3001] = {.lex_state = 72}, [3002] = {.lex_state = 72}, [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 72}, - [3005] = {.lex_state = 72}, + [3004] = {.lex_state = 17}, + [3005] = {.lex_state = 17}, [3006] = {.lex_state = 72}, [3007] = {.lex_state = 72}, - [3008] = {.lex_state = 72}, + [3008] = {.lex_state = 20}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 17}, + [3010] = {.lex_state = 72}, [3011] = {.lex_state = 72}, - [3012] = {.lex_state = 19}, - [3013] = {.lex_state = 8}, - [3014] = {.lex_state = 72}, + [3012] = {.lex_state = 72}, + [3013] = {.lex_state = 17}, + [3014] = {.lex_state = 17}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 17}, - [3017] = {.lex_state = 72}, - [3018] = {.lex_state = 72}, + [3016] = {.lex_state = 72}, + [3017] = {.lex_state = 19}, + [3018] = {.lex_state = 17}, [3019] = {.lex_state = 72}, - [3020] = {.lex_state = 72}, - [3021] = {.lex_state = 8}, - [3022] = {.lex_state = 17}, + [3020] = {.lex_state = 17}, + [3021] = {.lex_state = 72}, + [3022] = {.lex_state = 72}, [3023] = {.lex_state = 72}, [3024] = {.lex_state = 72}, [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, [3027] = {.lex_state = 72}, - [3028] = {.lex_state = 72}, - [3029] = {.lex_state = 23}, + [3028] = {.lex_state = 8}, + [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, - [3032] = {.lex_state = 17}, + [3032] = {.lex_state = 19}, [3033] = {.lex_state = 72}, [3034] = {.lex_state = 72}, - [3035] = {.lex_state = 19}, - [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 19}, - [3038] = {.lex_state = 17}, + [3035] = {.lex_state = 72}, + [3036] = {.lex_state = 17}, + [3037] = {.lex_state = 72}, + [3038] = {.lex_state = 20}, [3039] = {.lex_state = 72}, - [3040] = {.lex_state = 72}, - [3041] = {.lex_state = 72}, + [3040] = {.lex_state = 19}, + [3041] = {.lex_state = 8}, [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, [3044] = {.lex_state = 72}, - [3045] = {.lex_state = 8}, - [3046] = {.lex_state = 19}, - [3047] = {.lex_state = 19}, + [3045] = {.lex_state = 72}, + [3046] = {.lex_state = 72}, + [3047] = {.lex_state = 72}, [3048] = {.lex_state = 72}, [3049] = {.lex_state = 72}, [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, - [3052] = {.lex_state = 8}, - [3053] = {.lex_state = 72}, + [3052] = {.lex_state = 72}, + [3053] = {.lex_state = 19}, [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 21}, - [3056] = {.lex_state = 72}, + [3055] = {.lex_state = 72}, + [3056] = {.lex_state = 19}, [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 72}, - [3059] = {.lex_state = 21}, - [3060] = {.lex_state = 72}, + [3058] = {.lex_state = 19}, + [3059] = {.lex_state = 72}, + [3060] = {.lex_state = 19}, [3061] = {.lex_state = 72}, - [3062] = {.lex_state = 72}, - [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 8}, - [3065] = {.lex_state = 19}, - [3066] = {.lex_state = 72}, + [3062] = {.lex_state = 17}, + [3063] = {.lex_state = 19}, + [3064] = {.lex_state = 31}, + [3065] = {.lex_state = 72}, + [3066] = {.lex_state = 19}, [3067] = {.lex_state = 72}, [3068] = {.lex_state = 72}, - [3069] = {.lex_state = 72}, + [3069] = {.lex_state = 17}, [3070] = {.lex_state = 72}, [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 23}, - [3073] = {.lex_state = 23}, + [3072] = {.lex_state = 72}, + [3073] = {.lex_state = 72}, [3074] = {.lex_state = 72}, [3075] = {.lex_state = 72}, - [3076] = {.lex_state = 19}, - [3077] = {.lex_state = 19}, - [3078] = {.lex_state = 72}, - [3079] = {.lex_state = 72}, + [3076] = {.lex_state = 72}, + [3077] = {.lex_state = 72}, + [3078] = {.lex_state = 20}, + [3079] = {.lex_state = 19}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 17}, + [3081] = {.lex_state = 19}, [3082] = {.lex_state = 72}, - [3083] = {.lex_state = 72}, + [3083] = {.lex_state = 8}, [3084] = {.lex_state = 72}, - [3085] = {.lex_state = 17}, - [3086] = {.lex_state = 19}, + [3085] = {.lex_state = 72}, + [3086] = {.lex_state = 72}, [3087] = {.lex_state = 72}, [3088] = {.lex_state = 72}, - [3089] = {.lex_state = 19}, - [3090] = {.lex_state = 23}, + [3089] = {.lex_state = 72}, + [3090] = {.lex_state = 72}, [3091] = {.lex_state = 72}, - [3092] = {.lex_state = 19}, - [3093] = {.lex_state = 19}, - [3094] = {.lex_state = 19}, + [3092] = {.lex_state = 72}, + [3093] = {.lex_state = 72}, + [3094] = {.lex_state = 17}, [3095] = {.lex_state = 72}, [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 17}, - [3098] = {.lex_state = 72}, + [3097] = {.lex_state = 72}, + [3098] = {.lex_state = 17}, [3099] = {.lex_state = 72}, - [3100] = {.lex_state = 19}, - [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 19}, - [3103] = {.lex_state = 19}, + [3100] = {.lex_state = 72}, + [3101] = {.lex_state = 8}, + [3102] = {.lex_state = 72}, + [3103] = {.lex_state = 72}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, - [3106] = {.lex_state = 72}, + [3106] = {.lex_state = 19}, [3107] = {.lex_state = 19}, - [3108] = {.lex_state = 19}, + [3108] = {.lex_state = 72}, [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 72}, - [3111] = {.lex_state = 72}, - [3112] = {.lex_state = 72}, + [3110] = {.lex_state = 31}, + [3111] = {.lex_state = 23}, + [3112] = {.lex_state = 8}, [3113] = {.lex_state = 72}, [3114] = {.lex_state = 72}, - [3115] = {.lex_state = 19}, + [3115] = {.lex_state = 72}, [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 72}, + [3117] = {.lex_state = 17}, [3118] = {.lex_state = 72}, [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, [3121] = {.lex_state = 72}, - [3122] = {.lex_state = 17}, - [3123] = {.lex_state = 8}, - [3124] = {.lex_state = 72}, - [3125] = {.lex_state = 17}, - [3126] = {.lex_state = 72}, + [3122] = {.lex_state = 72}, + [3123] = {.lex_state = 23}, + [3124] = {.lex_state = 8}, + [3125] = {.lex_state = 72}, + [3126] = {.lex_state = 8}, [3127] = {.lex_state = 72}, [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 72}, + [3130] = {.lex_state = 17}, [3131] = {.lex_state = 72}, - [3132] = {.lex_state = 19}, + [3132] = {.lex_state = 72}, [3133] = {.lex_state = 72}, [3134] = {.lex_state = 72}, - [3135] = {.lex_state = 72}, - [3136] = {.lex_state = 72}, + [3135] = {.lex_state = 8}, + [3136] = {.lex_state = 17}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 72}, - [3140] = {.lex_state = 19}, - [3141] = {.lex_state = 72}, + [3139] = {.lex_state = 17}, + [3140] = {.lex_state = 72}, + [3141] = {.lex_state = 20}, [3142] = {.lex_state = 72}, - [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 8}, + [3143] = {.lex_state = 17}, + [3144] = {.lex_state = 72}, [3145] = {.lex_state = 72}, [3146] = {.lex_state = 72}, - [3147] = {.lex_state = 8}, - [3148] = {.lex_state = 8}, + [3147] = {.lex_state = 72}, + [3148] = {.lex_state = 72}, [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 17}, - [3151] = {.lex_state = 8}, + [3150] = {.lex_state = 23}, + [3151] = {.lex_state = 72}, [3152] = {.lex_state = 72}, - [3153] = {.lex_state = 17}, + [3153] = {.lex_state = 72}, [3154] = {.lex_state = 72}, - [3155] = {.lex_state = 17}, + [3155] = {.lex_state = 72}, [3156] = {.lex_state = 72}, [3157] = {.lex_state = 17}, - [3158] = {.lex_state = 72}, + [3158] = {.lex_state = 17}, [3159] = {.lex_state = 72}, - [3160] = {.lex_state = 72}, - [3161] = {.lex_state = 17}, - [3162] = {.lex_state = 7}, + [3160] = {.lex_state = 20}, + [3161] = {.lex_state = 72}, + [3162] = {.lex_state = 72}, [3163] = {.lex_state = 72}, [3164] = {.lex_state = 72}, - [3165] = {.lex_state = 7}, + [3165] = {.lex_state = 72}, [3166] = {.lex_state = 72}, [3167] = {.lex_state = 72}, - [3168] = {.lex_state = 72}, + [3168] = {.lex_state = 17}, [3169] = {.lex_state = 17}, [3170] = {.lex_state = 17}, [3171] = {.lex_state = 17}, - [3172] = {.lex_state = 17}, + [3172] = {.lex_state = 72}, [3173] = {.lex_state = 17}, - [3174] = {.lex_state = 17}, + [3174] = {.lex_state = 72}, [3175] = {.lex_state = 17}, - [3176] = {.lex_state = 72}, + [3176] = {.lex_state = 17}, [3177] = {.lex_state = 72}, [3178] = {.lex_state = 72}, [3179] = {.lex_state = 72}, [3180] = {.lex_state = 72}, [3181] = {.lex_state = 72}, - [3182] = {.lex_state = 17}, + [3182] = {.lex_state = 72}, [3183] = {.lex_state = 72}, - [3184] = {.lex_state = 17}, + [3184] = {.lex_state = 72}, [3185] = {.lex_state = 17}, [3186] = {.lex_state = 72}, [3187] = {.lex_state = 72}, [3188] = {.lex_state = 72}, - [3189] = {.lex_state = 72}, - [3190] = {.lex_state = 72}, - [3191] = {.lex_state = 17}, + [3189] = {.lex_state = 17}, + [3190] = {.lex_state = 17}, + [3191] = {.lex_state = 72}, [3192] = {.lex_state = 72}, [3193] = {.lex_state = 72}, - [3194] = {.lex_state = 23}, + [3194] = {.lex_state = 72}, [3195] = {.lex_state = 72}, [3196] = {.lex_state = 17}, [3197] = {.lex_state = 72}, - [3198] = {.lex_state = 72}, - [3199] = {.lex_state = 17}, - [3200] = {.lex_state = 72}, - [3201] = {.lex_state = 17}, + [3198] = {.lex_state = 72, .external_lex_state = 5}, + [3199] = {.lex_state = 72}, + [3200] = {.lex_state = 17}, + [3201] = {.lex_state = 72}, [3202] = {.lex_state = 72}, [3203] = {.lex_state = 72}, [3204] = {.lex_state = 72}, - [3205] = {.lex_state = 17}, + [3205] = {.lex_state = 72}, [3206] = {.lex_state = 72}, - [3207] = {.lex_state = 72}, + [3207] = {.lex_state = 17}, [3208] = {.lex_state = 17}, [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 72}, - [3211] = {.lex_state = 8}, - [3212] = {.lex_state = 72}, - [3213] = {.lex_state = 31}, - [3214] = {.lex_state = 72}, + [3210] = {.lex_state = 17}, + [3211] = {.lex_state = 72}, + [3212] = {.lex_state = 17}, + [3213] = {.lex_state = 17}, + [3214] = {.lex_state = 17}, [3215] = {.lex_state = 72}, - [3216] = {.lex_state = 17}, - [3217] = {.lex_state = 17}, - [3218] = {.lex_state = 72}, + [3216] = {.lex_state = 72}, + [3217] = {.lex_state = 23}, + [3218] = {.lex_state = 17}, [3219] = {.lex_state = 17}, - [3220] = {.lex_state = 72}, - [3221] = {.lex_state = 72}, + [3220] = {.lex_state = 17}, + [3221] = {.lex_state = 17}, [3222] = {.lex_state = 72}, [3223] = {.lex_state = 72}, - [3224] = {.lex_state = 17}, - [3225] = {.lex_state = 72}, + [3224] = {.lex_state = 72}, + [3225] = {.lex_state = 17}, [3226] = {.lex_state = 17}, [3227] = {.lex_state = 17}, [3228] = {.lex_state = 17}, - [3229] = {.lex_state = 72}, - [3230] = {.lex_state = 72}, + [3229] = {.lex_state = 17}, + [3230] = {.lex_state = 17}, [3231] = {.lex_state = 72}, [3232] = {.lex_state = 72}, - [3233] = {.lex_state = 17}, + [3233] = {.lex_state = 72}, [3234] = {.lex_state = 72}, [3235] = {.lex_state = 17}, [3236] = {.lex_state = 72}, [3237] = {.lex_state = 72}, [3238] = {.lex_state = 17}, [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 17}, - [3241] = {.lex_state = 72}, + [3240] = {.lex_state = 72}, + [3241] = {.lex_state = 31}, [3242] = {.lex_state = 72}, [3243] = {.lex_state = 72}, [3244] = {.lex_state = 72}, - [3245] = {.lex_state = 17}, + [3245] = {.lex_state = 72}, [3246] = {.lex_state = 17}, [3247] = {.lex_state = 72}, [3248] = {.lex_state = 72}, @@ -13639,39 +13642,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3250] = {.lex_state = 17}, [3251] = {.lex_state = 17}, [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 17}, + [3253] = {.lex_state = 72}, [3254] = {.lex_state = 72}, [3255] = {.lex_state = 72}, [3256] = {.lex_state = 72}, - [3257] = {.lex_state = 17}, + [3257] = {.lex_state = 72}, [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, + [3259] = {.lex_state = 72}, + [3260] = {.lex_state = 72}, [3261] = {.lex_state = 17}, [3262] = {.lex_state = 72}, [3263] = {.lex_state = 17}, - [3264] = {.lex_state = 17}, + [3264] = {.lex_state = 72}, [3265] = {.lex_state = 17}, [3266] = {.lex_state = 17}, [3267] = {.lex_state = 17}, - [3268] = {.lex_state = 17}, - [3269] = {.lex_state = 72}, - [3270] = {.lex_state = 17}, + [3268] = {.lex_state = 72}, + [3269] = {.lex_state = 17}, + [3270] = {.lex_state = 72}, [3271] = {.lex_state = 72}, [3272] = {.lex_state = 72}, - [3273] = {.lex_state = 17}, - [3274] = {.lex_state = 17}, - [3275] = {.lex_state = 17}, + [3273] = {.lex_state = 72}, + [3274] = {.lex_state = 31}, + [3275] = {.lex_state = 72}, [3276] = {.lex_state = 17}, - [3277] = {.lex_state = 72}, - [3278] = {.lex_state = 72}, - [3279] = {.lex_state = 72}, + [3277] = {.lex_state = 17}, + [3278] = {.lex_state = 17}, + [3279] = {.lex_state = 17}, [3280] = {.lex_state = 17}, [3281] = {.lex_state = 17}, [3282] = {.lex_state = 17}, - [3283] = {.lex_state = 17}, - [3284] = {.lex_state = 17}, - [3285] = {.lex_state = 17}, + [3283] = {.lex_state = 72}, + [3284] = {.lex_state = 72}, + [3285] = {.lex_state = 72}, [3286] = {.lex_state = 17}, [3287] = {.lex_state = 17}, [3288] = {.lex_state = 17}, @@ -13683,46 +13686,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3294] = {.lex_state = 17}, [3295] = {.lex_state = 17}, [3296] = {.lex_state = 17}, - [3297] = {.lex_state = 23, .external_lex_state = 5}, - [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, + [3297] = {.lex_state = 17}, + [3298] = {.lex_state = 17}, + [3299] = {.lex_state = 17}, [3300] = {.lex_state = 17}, - [3301] = {.lex_state = 72}, + [3301] = {.lex_state = 17}, [3302] = {.lex_state = 72}, [3303] = {.lex_state = 72}, - [3304] = {.lex_state = 17}, + [3304] = {.lex_state = 72}, [3305] = {.lex_state = 72}, [3306] = {.lex_state = 72}, - [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 72}, + [3307] = {.lex_state = 23, .external_lex_state = 6}, + [3308] = {.lex_state = 23, .external_lex_state = 6}, [3309] = {.lex_state = 72}, [3310] = {.lex_state = 72}, - [3311] = {.lex_state = 17}, + [3311] = {.lex_state = 72}, [3312] = {.lex_state = 72}, - [3313] = {.lex_state = 72}, + [3313] = {.lex_state = 17}, [3314] = {.lex_state = 72}, - [3315] = {.lex_state = 72}, - [3316] = {.lex_state = 72, .external_lex_state = 6}, + [3315] = {.lex_state = 17}, + [3316] = {.lex_state = 17}, [3317] = {.lex_state = 72}, [3318] = {.lex_state = 72}, [3319] = {.lex_state = 72}, - [3320] = {.lex_state = 8}, - [3321] = {.lex_state = 72}, - [3322] = {.lex_state = 23, .external_lex_state = 5}, + [3320] = {.lex_state = 17}, + [3321] = {.lex_state = 31}, + [3322] = {.lex_state = 72}, [3323] = {.lex_state = 72}, - [3324] = {.lex_state = 72}, - [3325] = {.lex_state = 17}, - [3326] = {.lex_state = 72}, + [3324] = {.lex_state = 17}, + [3325] = {.lex_state = 23, .external_lex_state = 6}, + [3326] = {.lex_state = 17}, [3327] = {.lex_state = 72}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 17}, - [3330] = {.lex_state = 72}, + [3329] = {.lex_state = 31}, + [3330] = {.lex_state = 31}, [3331] = {.lex_state = 72}, [3332] = {.lex_state = 72}, - [3333] = {.lex_state = 17}, + [3333] = {.lex_state = 72}, [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 17}, - [3336] = {.lex_state = 72}, + [3335] = {.lex_state = 72}, + [3336] = {.lex_state = 17}, [3337] = {.lex_state = 17}, [3338] = {.lex_state = 72}, [3339] = {.lex_state = 72}, @@ -13730,14 +13733,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3341] = {.lex_state = 17}, [3342] = {.lex_state = 72}, [3343] = {.lex_state = 72}, - [3344] = {.lex_state = 17}, - [3345] = {.lex_state = 31}, + [3344] = {.lex_state = 72}, + [3345] = {.lex_state = 17}, [3346] = {.lex_state = 72}, [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72, .external_lex_state = 6}, + [3348] = {.lex_state = 72}, [3349] = {.lex_state = 72}, [3350] = {.lex_state = 72}, - [3351] = {.lex_state = 17}, + [3351] = {.lex_state = 72}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, [3354] = {.lex_state = 72}, @@ -13746,91 +13749,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3357] = {.lex_state = 72}, [3358] = {.lex_state = 72}, [3359] = {.lex_state = 72}, - [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 17}, - [3362] = {.lex_state = 17}, + [3360] = {.lex_state = 8}, + [3361] = {.lex_state = 72}, + [3362] = {.lex_state = 72}, [3363] = {.lex_state = 72}, [3364] = {.lex_state = 72}, [3365] = {.lex_state = 72}, [3366] = {.lex_state = 72}, [3367] = {.lex_state = 72}, - [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 23, .external_lex_state = 5}, - [3370] = {.lex_state = 17}, - [3371] = {.lex_state = 72}, - [3372] = {.lex_state = 72}, - [3373] = {.lex_state = 72}, + [3368] = {.lex_state = 31}, + [3369] = {.lex_state = 72}, + [3370] = {.lex_state = 72}, + [3371] = {.lex_state = 17}, + [3372] = {.lex_state = 17}, + [3373] = {.lex_state = 72, .external_lex_state = 5}, [3374] = {.lex_state = 17}, [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 31}, - [3377] = {.lex_state = 17}, - [3378] = {.lex_state = 72}, - [3379] = {.lex_state = 72}, + [3376] = {.lex_state = 17}, + [3377] = {.lex_state = 72}, + [3378] = {.lex_state = 17}, + [3379] = {.lex_state = 23}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 17}, - [3383] = {.lex_state = 72}, + [3382] = {.lex_state = 72}, + [3383] = {.lex_state = 17}, [3384] = {.lex_state = 72}, [3385] = {.lex_state = 72}, [3386] = {.lex_state = 72}, - [3387] = {.lex_state = 72}, - [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 17}, - [3390] = {.lex_state = 72}, + [3387] = {.lex_state = 17}, + [3388] = {.lex_state = 7}, + [3389] = {.lex_state = 7}, + [3390] = {.lex_state = 17}, [3391] = {.lex_state = 72}, [3392] = {.lex_state = 72}, [3393] = {.lex_state = 72}, [3394] = {.lex_state = 72}, [3395] = {.lex_state = 72}, - [3396] = {.lex_state = 17}, + [3396] = {.lex_state = 72}, [3397] = {.lex_state = 72}, [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 31}, - [3402] = {.lex_state = 31}, - [3403] = {.lex_state = 72}, + [3401] = {.lex_state = 72}, + [3402] = {.lex_state = 72}, + [3403] = {.lex_state = 17}, [3404] = {.lex_state = 72}, - [3405] = {.lex_state = 21}, + [3405] = {.lex_state = 72}, [3406] = {.lex_state = 72}, [3407] = {.lex_state = 72}, [3408] = {.lex_state = 72}, [3409] = {.lex_state = 17}, - [3410] = {.lex_state = 17}, - [3411] = {.lex_state = 17}, - [3412] = {.lex_state = 17}, + [3410] = {.lex_state = 72}, + [3411] = {.lex_state = 72}, + [3412] = {.lex_state = 72}, [3413] = {.lex_state = 17}, [3414] = {.lex_state = 17}, - [3415] = {.lex_state = 72}, - [3416] = {.lex_state = 17}, - [3417] = {.lex_state = 72}, - [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 23}, - [3421] = {.lex_state = 72}, - [3422] = {.lex_state = 17}, + [3415] = {.lex_state = 17}, + [3416] = {.lex_state = 72}, + [3417] = {.lex_state = 17}, + [3418] = {.lex_state = 17}, + [3419] = {.lex_state = 17}, + [3420] = {.lex_state = 72}, + [3421] = {.lex_state = 8}, + [3422] = {.lex_state = 72}, [3423] = {.lex_state = 72}, - [3424] = {.lex_state = 17}, - [3425] = {.lex_state = 72}, + [3424] = {.lex_state = 72}, + [3425] = {.lex_state = 17}, [3426] = {.lex_state = 72}, - [3427] = {.lex_state = 72}, - [3428] = {.lex_state = 17}, - [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 17}, - [3431] = {.lex_state = 72}, + [3427] = {.lex_state = 17}, + [3428] = {.lex_state = 72}, + [3429] = {.lex_state = 17}, + [3430] = {.lex_state = 72}, + [3431] = {.lex_state = 17}, [3432] = {.lex_state = 17}, [3433] = {.lex_state = 17}, - [3434] = {.lex_state = 31}, + [3434] = {.lex_state = 17}, [3435] = {.lex_state = 17}, [3436] = {.lex_state = 17}, - [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 17}, + [3437] = {.lex_state = 17}, + [3438] = {.lex_state = 72}, [3439] = {.lex_state = 17}, - [3440] = {.lex_state = 72}, + [3440] = {.lex_state = 17}, [3441] = {.lex_state = 17}, [3442] = {.lex_state = 17}, - [3443] = {.lex_state = 17}, - [3444] = {.lex_state = 17}, + [3443] = {.lex_state = 72}, + [3444] = {.lex_state = 72}, [3445] = {.lex_state = 72}, [3446] = {.lex_state = 17}, [3447] = {.lex_state = 17}, @@ -13838,205 +13841,205 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3449] = {.lex_state = 72}, [3450] = {.lex_state = 72}, [3451] = {.lex_state = 72}, - [3452] = {.lex_state = 72}, + [3452] = {.lex_state = 17}, [3453] = {.lex_state = 17}, [3454] = {.lex_state = 17}, [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 72}, + [3456] = {.lex_state = 17}, [3457] = {.lex_state = 72}, - [3458] = {.lex_state = 72}, + [3458] = {.lex_state = 17}, [3459] = {.lex_state = 72}, [3460] = {.lex_state = 72}, [3461] = {.lex_state = 72}, - [3462] = {.lex_state = 17}, - [3463] = {.lex_state = 72}, + [3462] = {.lex_state = 72}, + [3463] = {.lex_state = 20}, [3464] = {.lex_state = 72}, [3465] = {.lex_state = 72}, [3466] = {.lex_state = 72}, - [3467] = {.lex_state = 72}, + [3467] = {.lex_state = 17}, [3468] = {.lex_state = 72}, [3469] = {.lex_state = 72}, - [3470] = {.lex_state = 21}, + [3470] = {.lex_state = 72}, [3471] = {.lex_state = 72}, - [3472] = {.lex_state = 8}, + [3472] = {.lex_state = 72, .external_lex_state = 7}, [3473] = {.lex_state = 72}, [3474] = {.lex_state = 72}, - [3475] = {.lex_state = 17}, + [3475] = {.lex_state = 72}, [3476] = {.lex_state = 72}, [3477] = {.lex_state = 72}, - [3478] = {.lex_state = 17}, - [3479] = {.lex_state = 17}, - [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72, .external_lex_state = 7}, + [3478] = {.lex_state = 72}, + [3479] = {.lex_state = 72}, + [3480] = {.lex_state = 17}, + [3481] = {.lex_state = 72}, [3482] = {.lex_state = 72}, [3483] = {.lex_state = 72}, [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 17}, - [3486] = {.lex_state = 72}, - [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 72, .external_lex_state = 8}, - [3489] = {.lex_state = 72, .external_lex_state = 8}, - [3490] = {.lex_state = 72}, + [3485] = {.lex_state = 20}, + [3486] = {.lex_state = 20}, + [3487] = {.lex_state = 73}, + [3488] = {.lex_state = 72}, + [3489] = {.lex_state = 72}, + [3490] = {.lex_state = 72, .external_lex_state = 7}, [3491] = {.lex_state = 72}, - [3492] = {.lex_state = 72}, - [3493] = {.lex_state = 72}, - [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 17}, - [3497] = {.lex_state = 72}, - [3498] = {.lex_state = 72}, - [3499] = {.lex_state = 72}, - [3500] = {.lex_state = 17}, - [3501] = {.lex_state = 17}, + [3492] = {.lex_state = 8}, + [3493] = {.lex_state = 73}, + [3494] = {.lex_state = 17}, + [3495] = {.lex_state = 72}, + [3496] = {.lex_state = 72}, + [3497] = {.lex_state = 17}, + [3498] = {.lex_state = 17}, + [3499] = {.lex_state = 17}, + [3500] = {.lex_state = 72}, + [3501] = {.lex_state = 72}, [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 17}, + [3503] = {.lex_state = 20}, [3504] = {.lex_state = 72}, [3505] = {.lex_state = 72}, - [3506] = {.lex_state = 17}, + [3506] = {.lex_state = 72}, [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 17}, - [3509] = {.lex_state = 73}, - [3510] = {.lex_state = 72}, + [3508] = {.lex_state = 72}, + [3509] = {.lex_state = 72}, + [3510] = {.lex_state = 20}, [3511] = {.lex_state = 72}, [3512] = {.lex_state = 72}, [3513] = {.lex_state = 72}, - [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 72}, - [3516] = {.lex_state = 17}, + [3514] = {.lex_state = 17}, + [3515] = {.lex_state = 17}, + [3516] = {.lex_state = 72}, [3517] = {.lex_state = 72}, - [3518] = {.lex_state = 72}, + [3518] = {.lex_state = 72, .external_lex_state = 8}, [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 73}, + [3520] = {.lex_state = 72, .external_lex_state = 8}, [3521] = {.lex_state = 72}, - [3522] = {.lex_state = 17}, - [3523] = {.lex_state = 17}, - [3524] = {.lex_state = 72, .external_lex_state = 7}, + [3522] = {.lex_state = 72}, + [3523] = {.lex_state = 72}, + [3524] = {.lex_state = 17}, [3525] = {.lex_state = 17}, - [3526] = {.lex_state = 72}, + [3526] = {.lex_state = 20}, [3527] = {.lex_state = 72}, - [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 21}, - [3530] = {.lex_state = 72}, - [3531] = {.lex_state = 17}, - [3532] = {.lex_state = 21}, + [3528] = {.lex_state = 72, .external_lex_state = 7}, + [3529] = {.lex_state = 72}, + [3530] = {.lex_state = 72, .external_lex_state = 7}, + [3531] = {.lex_state = 72}, + [3532] = {.lex_state = 72}, [3533] = {.lex_state = 17}, - [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 23}, - [3536] = {.lex_state = 17}, - [3537] = {.lex_state = 72, .external_lex_state = 8}, + [3534] = {.lex_state = 17}, + [3535] = {.lex_state = 72}, + [3536] = {.lex_state = 73}, + [3537] = {.lex_state = 17}, [3538] = {.lex_state = 72}, - [3539] = {.lex_state = 72, .external_lex_state = 7}, - [3540] = {.lex_state = 72}, + [3539] = {.lex_state = 72}, + [3540] = {.lex_state = 73}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 17}, - [3543] = {.lex_state = 72, .external_lex_state = 9}, - [3544] = {.lex_state = 17}, - [3545] = {.lex_state = 72}, + [3542] = {.lex_state = 72}, + [3543] = {.lex_state = 72}, + [3544] = {.lex_state = 72, .external_lex_state = 8}, + [3545] = {.lex_state = 17}, [3546] = {.lex_state = 72}, - [3547] = {.lex_state = 72}, + [3547] = {.lex_state = 72, .external_lex_state = 7}, [3548] = {.lex_state = 72}, - [3549] = {.lex_state = 72, .external_lex_state = 8}, - [3550] = {.lex_state = 72}, + [3549] = {.lex_state = 17}, + [3550] = {.lex_state = 17}, [3551] = {.lex_state = 17}, [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 17}, - [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 17}, - [3556] = {.lex_state = 21}, + [3553] = {.lex_state = 72}, + [3554] = {.lex_state = 20}, + [3555] = {.lex_state = 73}, + [3556] = {.lex_state = 72}, [3557] = {.lex_state = 72}, [3558] = {.lex_state = 72}, - [3559] = {.lex_state = 72}, + [3559] = {.lex_state = 17}, [3560] = {.lex_state = 72}, [3561] = {.lex_state = 17}, [3562] = {.lex_state = 72}, - [3563] = {.lex_state = 72}, - [3564] = {.lex_state = 73}, + [3563] = {.lex_state = 72, .external_lex_state = 8}, + [3564] = {.lex_state = 17}, [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 23}, - [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 72, .external_lex_state = 7}, + [3566] = {.lex_state = 17}, + [3567] = {.lex_state = 17}, + [3568] = {.lex_state = 17}, [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 73}, + [3570] = {.lex_state = 72}, [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 72}, - [3573] = {.lex_state = 72}, - [3574] = {.lex_state = 21}, - [3575] = {.lex_state = 72, .external_lex_state = 8}, + [3572] = {.lex_state = 17}, + [3573] = {.lex_state = 20}, + [3574] = {.lex_state = 17}, + [3575] = {.lex_state = 72}, [3576] = {.lex_state = 72}, [3577] = {.lex_state = 72}, [3578] = {.lex_state = 72}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, [3581] = {.lex_state = 72}, - [3582] = {.lex_state = 21}, - [3583] = {.lex_state = 17}, + [3582] = {.lex_state = 72}, + [3583] = {.lex_state = 72}, [3584] = {.lex_state = 72}, - [3585] = {.lex_state = 72, .external_lex_state = 9}, + [3585] = {.lex_state = 17}, [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, [3588] = {.lex_state = 72}, - [3589] = {.lex_state = 72}, + [3589] = {.lex_state = 72, .external_lex_state = 9}, [3590] = {.lex_state = 72}, [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 17}, - [3593] = {.lex_state = 17}, + [3592] = {.lex_state = 72}, + [3593] = {.lex_state = 72}, [3594] = {.lex_state = 72}, - [3595] = {.lex_state = 17}, + [3595] = {.lex_state = 72}, [3596] = {.lex_state = 72}, [3597] = {.lex_state = 72}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 8}, + [3600] = {.lex_state = 72}, [3601] = {.lex_state = 72}, - [3602] = {.lex_state = 17}, + [3602] = {.lex_state = 72}, [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 72}, + [3604] = {.lex_state = 8}, [3605] = {.lex_state = 72}, - [3606] = {.lex_state = 72}, - [3607] = {.lex_state = 72}, + [3606] = {.lex_state = 17}, + [3607] = {.lex_state = 23}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 72}, + [3609] = {.lex_state = 73}, [3610] = {.lex_state = 72}, [3611] = {.lex_state = 72}, [3612] = {.lex_state = 72}, - [3613] = {.lex_state = 17}, - [3614] = {.lex_state = 72}, + [3613] = {.lex_state = 72}, + [3614] = {.lex_state = 17}, [3615] = {.lex_state = 72}, [3616] = {.lex_state = 72}, - [3617] = {.lex_state = 72}, + [3617] = {.lex_state = 17}, [3618] = {.lex_state = 72}, [3619] = {.lex_state = 72}, [3620] = {.lex_state = 17}, - [3621] = {.lex_state = 17}, + [3621] = {.lex_state = 72}, [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 17}, - [3624] = {.lex_state = 72, .external_lex_state = 9}, - [3625] = {.lex_state = 72}, + [3623] = {.lex_state = 72}, + [3624] = {.lex_state = 72}, + [3625] = {.lex_state = 20}, [3626] = {.lex_state = 17}, [3627] = {.lex_state = 17}, - [3628] = {.lex_state = 72}, + [3628] = {.lex_state = 72, .external_lex_state = 9}, [3629] = {.lex_state = 72}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 17}, - [3633] = {.lex_state = 17}, + [3632] = {.lex_state = 72}, + [3633] = {.lex_state = 20}, [3634] = {.lex_state = 72}, [3635] = {.lex_state = 17}, - [3636] = {.lex_state = 21}, - [3637] = {.lex_state = 17}, - [3638] = {.lex_state = 17}, + [3636] = {.lex_state = 17}, + [3637] = {.lex_state = 72}, + [3638] = {.lex_state = 72}, [3639] = {.lex_state = 72}, [3640] = {.lex_state = 72}, - [3641] = {.lex_state = 72}, - [3642] = {.lex_state = 17}, + [3641] = {.lex_state = 72, .external_lex_state = 9}, + [3642] = {.lex_state = 72}, [3643] = {.lex_state = 72}, [3644] = {.lex_state = 72}, - [3645] = {.lex_state = 72, .external_lex_state = 9}, + [3645] = {.lex_state = 72}, [3646] = {.lex_state = 72}, - [3647] = {.lex_state = 72}, - [3648] = {.lex_state = 72}, + [3647] = {.lex_state = 20}, + [3648] = {.lex_state = 72, .external_lex_state = 9}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 21}, + [3650] = {.lex_state = 17}, [3651] = {.lex_state = 72}, [3652] = {.lex_state = 72, .external_lex_state = 9}, [3653] = {.lex_state = 72}, @@ -14044,7 +14047,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3655] = {.lex_state = 72, .external_lex_state = 9}, [3656] = {.lex_state = 72}, [3657] = {.lex_state = 72}, - [3658] = {.lex_state = 72}, + [3658] = {.lex_state = 17}, [3659] = {.lex_state = 72}, [3660] = {.lex_state = 72}, [3661] = {.lex_state = 72}, @@ -14052,125 +14055,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3663] = {.lex_state = 72}, [3664] = {.lex_state = 72}, [3665] = {.lex_state = 72}, - [3666] = {.lex_state = 17}, + [3666] = {.lex_state = 72}, [3667] = {.lex_state = 72}, - [3668] = {.lex_state = 17}, - [3669] = {.lex_state = 21}, + [3668] = {.lex_state = 72}, + [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, [3671] = {.lex_state = 72}, - [3672] = {.lex_state = 72}, + [3672] = {.lex_state = 20}, [3673] = {.lex_state = 72}, - [3674] = {.lex_state = 17}, - [3675] = {.lex_state = 72}, - [3676] = {.lex_state = 72}, - [3677] = {.lex_state = 21}, - [3678] = {.lex_state = 21}, - [3679] = {.lex_state = 17}, - [3680] = {.lex_state = 17}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 21}, - [3683] = {.lex_state = 21}, - [3684] = {.lex_state = 17}, - [3685] = {.lex_state = 17}, - [3686] = {.lex_state = 17}, + [3674] = {.lex_state = 72}, + [3675] = {.lex_state = 17}, + [3676] = {.lex_state = 17}, + [3677] = {.lex_state = 72}, + [3678] = {.lex_state = 17}, + [3679] = {.lex_state = 72}, + [3680] = {.lex_state = 20}, + [3681] = {.lex_state = 20}, + [3682] = {.lex_state = 17}, + [3683] = {.lex_state = 17}, + [3684] = {.lex_state = 72}, + [3685] = {.lex_state = 72}, + [3686] = {.lex_state = 20}, [3687] = {.lex_state = 72}, - [3688] = {.lex_state = 21}, - [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 8}, - [3691] = {.lex_state = 72}, + [3688] = {.lex_state = 17}, + [3689] = {.lex_state = 17}, + [3690] = {.lex_state = 17}, + [3691] = {.lex_state = 17}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 21}, - [3694] = {.lex_state = 73}, - [3695] = {.lex_state = 72}, + [3693] = {.lex_state = 72}, + [3694] = {.lex_state = 72}, + [3695] = {.lex_state = 17}, [3696] = {.lex_state = 72}, [3697] = {.lex_state = 17}, - [3698] = {.lex_state = 21}, - [3699] = {.lex_state = 72}, + [3698] = {.lex_state = 17}, + [3699] = {.lex_state = 17}, [3700] = {.lex_state = 72}, - [3701] = {.lex_state = 72}, - [3702] = {.lex_state = 21}, + [3701] = {.lex_state = 20}, + [3702] = {.lex_state = 72}, [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 73}, - [3706] = {.lex_state = 17}, - [3707] = {.lex_state = 72}, + [3705] = {.lex_state = 20}, + [3706] = {.lex_state = 73}, + [3707] = {.lex_state = 17}, [3708] = {.lex_state = 72}, [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 21}, + [3711] = {.lex_state = 72}, [3712] = {.lex_state = 72}, - [3713] = {.lex_state = 72}, - [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 167}, + [3713] = {.lex_state = 17}, + [3714] = {.lex_state = 20}, + [3715] = {.lex_state = 72}, [3716] = {.lex_state = 72}, [3717] = {.lex_state = 72}, [3718] = {.lex_state = 72}, [3719] = {.lex_state = 72}, - [3720] = {.lex_state = 73}, - [3721] = {.lex_state = 17}, + [3720] = {.lex_state = 72}, + [3721] = {.lex_state = 72}, [3722] = {.lex_state = 72}, - [3723] = {.lex_state = 72}, + [3723] = {.lex_state = 20}, [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 8}, - [3726] = {.lex_state = 21}, - [3727] = {.lex_state = 72}, + [3725] = {.lex_state = 72}, + [3726] = {.lex_state = 72}, + [3727] = {.lex_state = 17}, [3728] = {.lex_state = 72}, - [3729] = {.lex_state = 21}, - [3730] = {.lex_state = 72}, + [3729] = {.lex_state = 20}, + [3730] = {.lex_state = 20}, [3731] = {.lex_state = 72}, - [3732] = {.lex_state = 21}, - [3733] = {.lex_state = 17}, + [3732] = {.lex_state = 72}, + [3733] = {.lex_state = 20}, [3734] = {.lex_state = 72}, - [3735] = {.lex_state = 21}, - [3736] = {.lex_state = 21}, + [3735] = {.lex_state = 72}, + [3736] = {.lex_state = 20}, [3737] = {.lex_state = 72}, - [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 21}, - [3740] = {.lex_state = 21}, - [3741] = {.lex_state = 21}, - [3742] = {.lex_state = 17}, - [3743] = {.lex_state = 17}, - [3744] = {.lex_state = 72}, - [3745] = {.lex_state = 72}, + [3738] = {.lex_state = 167}, + [3739] = {.lex_state = 20}, + [3740] = {.lex_state = 20}, + [3741] = {.lex_state = 8}, + [3742] = {.lex_state = 72}, + [3743] = {.lex_state = 20}, + [3744] = {.lex_state = 20}, + [3745] = {.lex_state = 20}, [3746] = {.lex_state = 17}, - [3747] = {.lex_state = 72}, - [3748] = {.lex_state = 73}, - [3749] = {.lex_state = 72, .external_lex_state = 7}, - [3750] = {.lex_state = 17}, - [3751] = {.lex_state = 72}, + [3747] = {.lex_state = 17}, + [3748] = {.lex_state = 17}, + [3749] = {.lex_state = 17}, + [3750] = {.lex_state = 72}, + [3751] = {.lex_state = 23}, [3752] = {.lex_state = 72}, [3753] = {.lex_state = 17}, - [3754] = {.lex_state = 17}, - [3755] = {.lex_state = 72}, - [3756] = {.lex_state = 21}, - [3757] = {.lex_state = 72}, - [3758] = {.lex_state = 72}, + [3754] = {.lex_state = 72}, + [3755] = {.lex_state = 72, .external_lex_state = 7}, + [3756] = {.lex_state = 17}, + [3757] = {.lex_state = 17}, + [3758] = {.lex_state = 73}, [3759] = {.lex_state = 72}, [3760] = {.lex_state = 72}, - [3761] = {.lex_state = 72}, - [3762] = {.lex_state = 21}, - [3763] = {.lex_state = 17}, + [3761] = {.lex_state = 17}, + [3762] = {.lex_state = 72, .external_lex_state = 8}, + [3763] = {.lex_state = 72}, [3764] = {.lex_state = 17}, - [3765] = {.lex_state = 72}, - [3766] = {.lex_state = 17}, - [3767] = {.lex_state = 17}, - [3768] = {.lex_state = 17}, + [3765] = {.lex_state = 17}, + [3766] = {.lex_state = 72}, + [3767] = {.lex_state = 72}, + [3768] = {.lex_state = 72}, [3769] = {.lex_state = 17}, [3770] = {.lex_state = 72}, [3771] = {.lex_state = 17}, [3772] = {.lex_state = 17}, - [3773] = {.lex_state = 72}, - [3774] = {.lex_state = 17}, - [3775] = {.lex_state = 72}, + [3773] = {.lex_state = 17}, + [3774] = {.lex_state = 72}, + [3775] = {.lex_state = 17}, [3776] = {.lex_state = 17}, - [3777] = {.lex_state = 72}, - [3778] = {(TSStateId)(-1),}, - [3779] = {(TSStateId)(-1),}, + [3777] = {.lex_state = 17}, + [3778] = {.lex_state = 17}, + [3779] = {.lex_state = 17}, [3780] = {(TSStateId)(-1),}, [3781] = {(TSStateId)(-1),}, [3782] = {(TSStateId)(-1),}, [3783] = {(TSStateId)(-1),}, [3784] = {(TSStateId)(-1),}, + [3785] = {(TSStateId)(-1),}, + [3786] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14329,83 +14334,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3483), - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_source_file] = STATE(3596), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14485,89 +14490,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14639,82 +14644,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14793,83 +14798,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14947,89 +14952,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15101,82 +15106,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15255,82 +15260,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15409,82 +15414,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(8)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), @@ -15563,82 +15568,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(9)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15717,82 +15722,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15871,82 +15876,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16025,82 +16030,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16179,82 +16184,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(13)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16333,82 +16338,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(14)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1923), [sym_macro_invocation] = STATE(423), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), [anon_sym_macro_rules_BANG] = ACTIONS(139), @@ -16487,82 +16492,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(15)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16641,82 +16646,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16795,82 +16800,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16949,82 +16954,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17103,82 +17108,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17257,82 +17262,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17411,82 +17416,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17565,82 +17570,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17719,82 +17724,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17873,82 +17878,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18027,82 +18032,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18181,82 +18186,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18335,82 +18340,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18489,82 +18494,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18643,82 +18648,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18797,82 +18802,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18951,82 +18956,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19105,82 +19110,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19259,82 +19264,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19413,82 +19418,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(680), + [sym_empty_statement] = STATE(723), + [sym_expression_statement] = STATE(723), + [sym_macro_definition] = STATE(723), + [sym_attribute_item] = STATE(723), + [sym_inner_attribute_item] = STATE(723), + [sym_mod_item] = STATE(723), + [sym_foreign_mod_item] = STATE(723), + [sym_struct_item] = STATE(723), + [sym_union_item] = STATE(723), + [sym_enum_item] = STATE(723), + [sym_extern_crate_declaration] = STATE(723), + [sym_const_item] = STATE(723), + [sym_static_item] = STATE(723), + [sym_type_item] = STATE(723), + [sym_function_item] = STATE(723), + [sym_function_signature_item] = STATE(723), + [sym_function_modifiers] = STATE(3707), + [sym_impl_item] = STATE(723), + [sym_trait_item] = STATE(723), + [sym_associated_type] = STATE(723), + [sym_let_declaration] = STATE(723), + [sym_use_declaration] = STATE(723), + [sym_extern_modifier] = STATE(2228), + [sym_visibility_modifier] = STATE(2013), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(422), + [sym_scoped_identifier] = STATE(1600), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(402), + [sym_match_expression] = STATE(402), + [sym_while_expression] = STATE(402), + [sym_loop_expression] = STATE(402), + [sym_for_expression] = STATE(402), + [sym_const_block] = STATE(402), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3503), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(402), + [sym_async_block] = STATE(402), + [sym_gen_block] = STATE(402), + [sym_try_block] = STATE(402), + [sym_block] = STATE(402), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19567,53 +19572,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1568), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1576), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19715,65 +19720,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1559), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19792,13 +19797,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -19817,16 +19822,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(379), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -19862,66 +19867,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(381), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(381), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19940,41 +19945,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(383), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19990,7 +19995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(389), + [anon_sym_else] = ACTIONS(383), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20009,66 +20014,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20086,42 +20091,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20137,7 +20142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(393), + [anon_sym_else] = ACTIONS(395), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20156,53 +20161,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1557), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), @@ -20303,53 +20308,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1557), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), @@ -20450,66 +20455,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_RBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20527,42 +20532,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), + [anon_sym_COMMA] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20578,7 +20583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(403), + [anon_sym_else] = ACTIONS(395), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20597,65 +20602,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(349), [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20674,13 +20679,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(387), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -20699,11 +20704,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(391), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(401), @@ -20744,53 +20749,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1788), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1803), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20887,63 +20892,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1820), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_EQ_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20961,41 +20966,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21029,53 +21034,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1736), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(405), @@ -21171,53 +21176,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(465), @@ -21313,204 +21318,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(47)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1750), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1742), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), @@ -21529,13 +21392,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -21554,15 +21417,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(493), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -21596,64 +21459,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(49)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1783), + [STATE(48)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1761), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21672,40 +21535,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(49)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(383), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(383), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21739,53 +21744,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(50)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(465), @@ -21881,53 +21886,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(51)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1736), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), @@ -22023,63 +22028,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(52)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1820), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(393), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_EQ_GT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -22097,41 +22102,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -22165,62 +22170,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(53)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22238,41 +22243,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), @@ -22306,53 +22311,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), [sym_identifier] = ACTIONS(465), @@ -22447,62 +22452,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), [sym_label] = STATE(46), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22520,41 +22525,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), @@ -22588,62 +22593,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22662,40 +22667,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), @@ -22729,62 +22734,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22802,41 +22807,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), @@ -22870,53 +22875,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), [sym_identifier] = ACTIONS(465), @@ -23011,62 +23016,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23084,41 +23089,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23152,53 +23157,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), [sym_identifier] = ACTIONS(465), @@ -23293,62 +23298,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(393), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23366,41 +23371,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(395), + [anon_sym_PERCENT] = ACTIONS(395), + [anon_sym_CARET] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(393), + [anon_sym_PIPE_PIPE] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_GT_GT] = 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_CARET_EQ] = ACTIONS(393), + [anon_sym_AMP_EQ] = ACTIONS(393), + [anon_sym_PIPE_EQ] = ACTIONS(393), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_GT_GT_EQ] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(395), + [anon_sym_EQ_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(393), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(395), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23434,53 +23439,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), [sym_identifier] = ACTIONS(465), @@ -23575,62 +23580,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(381), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23649,40 +23654,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(383), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), @@ -23716,62 +23721,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(383), [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(381), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23790,40 +23795,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(383), + [anon_sym_CARET] = ACTIONS(383), [anon_sym_BANG] = ACTIONS(503), [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_PLUS_EQ] = ACTIONS(381), + [anon_sym_DASH_EQ] = ACTIONS(381), + [anon_sym_STAR_EQ] = ACTIONS(381), + [anon_sym_SLASH_EQ] = ACTIONS(381), + [anon_sym_PERCENT_EQ] = ACTIONS(381), + [anon_sym_CARET_EQ] = ACTIONS(381), + [anon_sym_AMP_EQ] = ACTIONS(381), + [anon_sym_PIPE_EQ] = ACTIONS(381), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_GT_GT_EQ] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(383), + [anon_sym_EQ_EQ] = ACTIONS(381), + [anon_sym_BANG_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(383), [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(381), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(383), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23857,62 +23862,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), [sym_label] = STATE(50), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23930,41 +23935,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23998,62 +24003,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -24072,40 +24077,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(503), [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -24139,18 +24144,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(527), [anon_sym_SEMI] = ACTIONS(530), [anon_sym_LPAREN] = ACTIONS(533), @@ -24265,18 +24270,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), }, [STATE(68)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), [aux_sym_token_tree_pattern_repeat1] = STATE(75), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -24389,18 +24394,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(69)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -24513,18 +24518,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(70)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -24637,18 +24642,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(71)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -24761,18 +24766,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(72)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -24885,18 +24890,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(73)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25009,18 +25014,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(74)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25133,18 +25138,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(75)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25257,18 +25262,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(76)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25381,18 +25386,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(77)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25505,16 +25510,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(78)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(597), [anon_sym_SEMI] = ACTIONS(600), @@ -25629,18 +25634,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(620), }, [STATE(79)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25753,18 +25758,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(80)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -25877,18 +25882,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(81)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -26001,16 +26006,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(82)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(636), [anon_sym_SEMI] = ACTIONS(639), [anon_sym_LPAREN] = ACTIONS(642), @@ -26125,18 +26130,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(659), }, [STATE(83)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(147), + [sym_token_tree_pattern] = STATE(189), + [sym_token_binding_pattern] = STATE(189), + [sym_token_repetition_pattern] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), @@ -26249,16 +26254,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -26371,16 +26376,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(85)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -26493,16 +26498,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(86)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -26615,16 +26620,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(87)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -26737,16 +26742,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(88)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -26859,16 +26864,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(89)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -26981,16 +26986,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27103,22 +27108,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(99), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(716), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -27225,16 +27230,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27347,16 +27352,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27469,16 +27474,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(98), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27591,16 +27596,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27713,16 +27718,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27835,16 +27840,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -27957,16 +27962,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(98)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28079,16 +28084,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(99)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28201,16 +28206,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(100)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28323,16 +28328,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(101)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28445,16 +28450,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(102)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(106), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28567,16 +28572,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(103)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(107), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28689,16 +28694,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(104)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(133), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -28811,16 +28816,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(105)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), [aux_sym_token_tree_repeat1] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -28933,16 +28938,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -29055,16 +29060,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -29177,16 +29182,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(108)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -29299,16 +29304,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(109)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), [aux_sym_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -29421,16 +29426,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(110)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), [aux_sym_token_tree_repeat1] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -29543,16 +29548,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -29665,16 +29670,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(116), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -29787,16 +29792,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(117), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -29909,16 +29914,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(118), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -30031,16 +30036,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(115)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -30153,16 +30158,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -30275,16 +30280,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -30397,16 +30402,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -30519,16 +30524,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(119)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -30641,16 +30646,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(120)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -30763,16 +30768,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(121)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), [aux_sym_token_tree_repeat1] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -30885,16 +30890,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(126), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -31007,16 +31012,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(127), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -31129,16 +31134,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(84), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -31251,23 +31256,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(90), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(716), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31373,16 +31378,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -31495,16 +31500,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -31617,16 +31622,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(100), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -31739,16 +31744,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(129)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(165), + [sym_raw_string_literal] = STATE(165), + [sym_boolean_literal] = STATE(165), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), @@ -31861,23 +31866,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(95), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31983,16 +31988,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(131)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(101), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -32105,16 +32110,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(111), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -32227,16 +32232,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(205), + [sym__delim_tokens] = STATE(210), + [sym__non_delim_token] = STATE(205), + [sym__literal] = STATE(202), + [sym_string_literal] = STATE(208), + [sym_raw_string_literal] = STATE(208), + [sym_boolean_literal] = STATE(208), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(182), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), @@ -32349,54 +32354,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), [aux_sym_enum_variant_list_repeat1] = STATE(138), @@ -32466,57 +32471,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32585,7 +32590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(136)] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(143), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(863), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(865), @@ -32702,21 +32707,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(137)] = { [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(143), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(874), [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(869), [anon_sym_u8] = ACTIONS(867), [anon_sym_i8] = ACTIONS(867), [anon_sym_u16] = ACTIONS(867), @@ -32734,44 +32739,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(867), [anon_sym_str] = ACTIONS(867), [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_PERCENT_EQ] = ACTIONS(869), + [anon_sym_CARET_EQ] = ACTIONS(869), + [anon_sym_AMP_EQ] = ACTIONS(869), + [anon_sym_PIPE_EQ] = ACTIONS(869), + [anon_sym_LT_LT_EQ] = ACTIONS(869), + [anon_sym_GT_GT_EQ] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(869), + [anon_sym__] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(867), [anon_sym_as] = ACTIONS(867), [anon_sym_async] = ACTIONS(867), @@ -32802,9 +32807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(867), [anon_sym_while] = ACTIONS(867), [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), [anon_sym_true] = ACTIONS(867), [anon_sym_false] = ACTIONS(867), [anon_sym_SLASH_SLASH] = ACTIONS(103), @@ -32812,62 +32817,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(867), [sym_super] = ACTIONS(867), [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_metavariable] = ACTIONS(872), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), }, [STATE(138)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32934,61 +32939,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(842), }, [STATE(139)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1620), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(134), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(871), + [anon_sym_RBRACK] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33014,7 +33019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(879), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33051,61 +33056,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(140)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [aux_sym_enum_variant_list_repeat1] = STATE(142), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_RBRACK] = ACTIONS(881), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33131,7 +33136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(883), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33168,61 +33173,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(141)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(213), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_gen] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [STATE(142)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(889), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33248,7 +33370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(891), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33284,61 +33406,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(142)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [STATE(143)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(207), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(893), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -33365,7 +33487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33401,179 +33523,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(143)] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(894), - [anon_sym_PERCENT] = ACTIONS(894), - [anon_sym_CARET] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(894), - [anon_sym_GT_GT] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_PERCENT_EQ] = ACTIONS(889), - [anon_sym_CARET_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(894), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), - [anon_sym__] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_COLON_COLON] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(889), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym_metavariable] = ACTIONS(892), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), - }, [STATE(144)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(134), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33636,57 +33641,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(145)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33754,238 +33759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(146)] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_EQ_GT] = ACTIONS(905), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_u8] = ACTIONS(903), - [anon_sym_i8] = ACTIONS(903), - [anon_sym_u16] = ACTIONS(903), - [anon_sym_i16] = ACTIONS(903), - [anon_sym_u32] = ACTIONS(903), - [anon_sym_i32] = ACTIONS(903), - [anon_sym_u64] = ACTIONS(903), - [anon_sym_i64] = ACTIONS(903), - [anon_sym_u128] = ACTIONS(903), - [anon_sym_i128] = ACTIONS(903), - [anon_sym_isize] = ACTIONS(903), - [anon_sym_usize] = ACTIONS(903), - [anon_sym_f32] = ACTIONS(903), - [anon_sym_f64] = ACTIONS(903), - [anon_sym_bool] = ACTIONS(903), - [anon_sym_str] = ACTIONS(903), - [anon_sym_char] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(903), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(905), - [anon_sym_DASH_EQ] = ACTIONS(905), - [anon_sym_STAR_EQ] = ACTIONS(905), - [anon_sym_SLASH_EQ] = ACTIONS(905), - [anon_sym_PERCENT_EQ] = ACTIONS(905), - [anon_sym_CARET_EQ] = ACTIONS(905), - [anon_sym_AMP_EQ] = ACTIONS(905), - [anon_sym_PIPE_EQ] = ACTIONS(905), - [anon_sym_LT_LT_EQ] = ACTIONS(905), - [anon_sym_GT_GT_EQ] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(905), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(905), - [anon_sym__] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(905), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(905), - [anon_sym_DASH_GT] = ACTIONS(905), - [anon_sym_POUND] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_fn] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_gen] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_impl] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_pub] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_static] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(903), - [anon_sym_trait] = ACTIONS(903), - [anon_sym_type] = ACTIONS(903), - [anon_sym_union] = ACTIONS(903), - [anon_sym_unsafe] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [sym_mutable_specifier] = ACTIONS(903), - [sym_integer_literal] = ACTIONS(905), - [aux_sym_string_literal_token1] = ACTIONS(905), - [sym_char_literal] = ACTIONS(905), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_crate] = ACTIONS(903), - [sym_metavariable] = ACTIONS(905), - [sym__raw_string_literal_start] = ACTIONS(905), - [sym_float_literal] = ACTIONS(905), - }, - [STATE(147)] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym_metavariable] = ACTIONS(909), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, - [STATE(148)] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), [sym_identifier] = ACTIONS(863), [anon_sym_SEMI] = ACTIONS(865), [anon_sym_LPAREN] = ACTIONS(865), @@ -33995,7 +33768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(865), [anon_sym_RBRACE] = ACTIONS(865), [anon_sym_EQ_GT] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(903), [anon_sym_DOLLAR] = ACTIONS(863), [anon_sym_PLUS] = ACTIONS(863), [anon_sym_STAR] = ACTIONS(863), @@ -34099,357 +33872,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(865), [sym_float_literal] = ACTIONS(865), }, + [STATE(147)] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_EQ_GT] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(905), + [anon_sym_i8] = ACTIONS(905), + [anon_sym_u16] = ACTIONS(905), + [anon_sym_i16] = ACTIONS(905), + [anon_sym_u32] = ACTIONS(905), + [anon_sym_i32] = ACTIONS(905), + [anon_sym_u64] = ACTIONS(905), + [anon_sym_i64] = ACTIONS(905), + [anon_sym_u128] = ACTIONS(905), + [anon_sym_i128] = ACTIONS(905), + [anon_sym_isize] = ACTIONS(905), + [anon_sym_usize] = ACTIONS(905), + [anon_sym_f32] = ACTIONS(905), + [anon_sym_f64] = ACTIONS(905), + [anon_sym_bool] = ACTIONS(905), + [anon_sym_str] = ACTIONS(905), + [anon_sym_char] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_AMP_EQ] = ACTIONS(907), + [anon_sym_PIPE_EQ] = ACTIONS(907), + [anon_sym_LT_LT_EQ] = ACTIONS(907), + [anon_sym_GT_GT_EQ] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym__] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(907), + [anon_sym_DASH_GT] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(905), + [anon_sym_as] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_await] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_fn] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_gen] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_impl] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_pub] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_static] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_trait] = ACTIONS(905), + [anon_sym_type] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_unsafe] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [sym_mutable_specifier] = ACTIONS(905), + [sym_integer_literal] = ACTIONS(907), + [aux_sym_string_literal_token1] = ACTIONS(907), + [sym_char_literal] = ACTIONS(907), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_crate] = ACTIONS(905), + [sym_metavariable] = ACTIONS(907), + [sym__raw_string_literal_start] = ACTIONS(907), + [sym_float_literal] = ACTIONS(907), + }, + [STATE(148)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2706), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(149)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2735), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym_metavariable] = ACTIONS(913), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(150)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), + [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(151)] = { [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym_metavariable] = ACTIONS(917), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(152)] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), [sym_identifier] = ACTIONS(919), [anon_sym_SEMI] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(921), @@ -34563,107 +34452,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(921), [sym_float_literal] = ACTIONS(921), }, + [STATE(152)] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(923), + [anon_sym_i8] = ACTIONS(923), + [anon_sym_u16] = ACTIONS(923), + [anon_sym_i16] = ACTIONS(923), + [anon_sym_u32] = ACTIONS(923), + [anon_sym_i32] = ACTIONS(923), + [anon_sym_u64] = ACTIONS(923), + [anon_sym_i64] = ACTIONS(923), + [anon_sym_u128] = ACTIONS(923), + [anon_sym_i128] = ACTIONS(923), + [anon_sym_isize] = ACTIONS(923), + [anon_sym_usize] = ACTIONS(923), + [anon_sym_f32] = ACTIONS(923), + [anon_sym_f64] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_str] = ACTIONS(923), + [anon_sym_char] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_STAR_EQ] = ACTIONS(925), + [anon_sym_SLASH_EQ] = ACTIONS(925), + [anon_sym_PERCENT_EQ] = ACTIONS(925), + [anon_sym_CARET_EQ] = ACTIONS(925), + [anon_sym_AMP_EQ] = ACTIONS(925), + [anon_sym_PIPE_EQ] = ACTIONS(925), + [anon_sym_LT_LT_EQ] = ACTIONS(925), + [anon_sym_GT_GT_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym__] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_COLON_COLON] = ACTIONS(925), + [anon_sym_DASH_GT] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_as] = ACTIONS(923), + [anon_sym_async] = ACTIONS(923), + [anon_sym_await] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_enum] = ACTIONS(923), + [anon_sym_fn] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_gen] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_impl] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_pub] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_static] = ACTIONS(923), + [anon_sym_struct] = ACTIONS(923), + [anon_sym_trait] = ACTIONS(923), + [anon_sym_type] = ACTIONS(923), + [anon_sym_union] = ACTIONS(923), + [anon_sym_unsafe] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [sym_mutable_specifier] = ACTIONS(923), + [sym_integer_literal] = ACTIONS(925), + [aux_sym_string_literal_token1] = ACTIONS(925), + [sym_char_literal] = ACTIONS(925), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(923), + [sym_super] = ACTIONS(923), + [sym_crate] = ACTIONS(923), + [sym_metavariable] = ACTIONS(925), + [sym__raw_string_literal_start] = ACTIONS(925), + [sym_float_literal] = ACTIONS(925), + }, [STATE(153)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2792), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_COLON] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(927), + [anon_sym_i8] = ACTIONS(927), + [anon_sym_u16] = ACTIONS(927), + [anon_sym_i16] = ACTIONS(927), + [anon_sym_u32] = ACTIONS(927), + [anon_sym_i32] = ACTIONS(927), + [anon_sym_u64] = ACTIONS(927), + [anon_sym_i64] = ACTIONS(927), + [anon_sym_u128] = ACTIONS(927), + [anon_sym_i128] = ACTIONS(927), + [anon_sym_isize] = ACTIONS(927), + [anon_sym_usize] = ACTIONS(927), + [anon_sym_f32] = ACTIONS(927), + [anon_sym_f64] = ACTIONS(927), + [anon_sym_bool] = ACTIONS(927), + [anon_sym_str] = ACTIONS(927), + [anon_sym_char] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_PERCENT_EQ] = ACTIONS(929), + [anon_sym_CARET_EQ] = ACTIONS(929), + [anon_sym_AMP_EQ] = ACTIONS(929), + [anon_sym_PIPE_EQ] = ACTIONS(929), + [anon_sym_LT_LT_EQ] = ACTIONS(929), + [anon_sym_GT_GT_EQ] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym__] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(929), + [anon_sym_DASH_GT] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(927), + [anon_sym_as] = ACTIONS(927), + [anon_sym_async] = ACTIONS(927), + [anon_sym_await] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_default] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_fn] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_gen] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_impl] = ACTIONS(927), + [anon_sym_let] = ACTIONS(927), + [anon_sym_loop] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_pub] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_static] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_trait] = ACTIONS(927), + [anon_sym_type] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [anon_sym_unsafe] = ACTIONS(927), + [anon_sym_use] = ACTIONS(927), + [anon_sym_where] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [sym_mutable_specifier] = ACTIONS(927), + [sym_integer_literal] = ACTIONS(929), + [aux_sym_string_literal_token1] = ACTIONS(929), + [sym_char_literal] = ACTIONS(929), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(927), + [sym_super] = ACTIONS(927), + [sym_crate] = ACTIONS(927), + [sym_metavariable] = ACTIONS(929), + [sym__raw_string_literal_start] = ACTIONS(929), + [sym_float_literal] = ACTIONS(929), + }, + [STATE(154)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(931), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -34672,417 +34793,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(154)] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), - }, [STATE(155)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(935), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(933), - [anon_sym_i8] = ACTIONS(933), - [anon_sym_u16] = ACTIONS(933), - [anon_sym_i16] = ACTIONS(933), - [anon_sym_u32] = ACTIONS(933), - [anon_sym_i32] = ACTIONS(933), - [anon_sym_u64] = ACTIONS(933), - [anon_sym_i64] = ACTIONS(933), - [anon_sym_u128] = ACTIONS(933), - [anon_sym_i128] = ACTIONS(933), - [anon_sym_isize] = ACTIONS(933), - [anon_sym_usize] = ACTIONS(933), - [anon_sym_f32] = ACTIONS(933), - [anon_sym_f64] = ACTIONS(933), - [anon_sym_bool] = ACTIONS(933), - [anon_sym_str] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(935), - [anon_sym__] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_COLON_COLON] = ACTIONS(935), - [anon_sym_DASH_GT] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_as] = ACTIONS(933), - [anon_sym_async] = ACTIONS(933), - [anon_sym_await] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_const] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_gen] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(933), - [anon_sym_let] = ACTIONS(933), - [anon_sym_loop] = ACTIONS(933), - [anon_sym_match] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_pub] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_struct] = ACTIONS(933), - [anon_sym_trait] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(933), - [anon_sym_use] = ACTIONS(933), - [anon_sym_where] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [sym_mutable_specifier] = ACTIONS(933), - [sym_integer_literal] = ACTIONS(935), - [aux_sym_string_literal_token1] = ACTIONS(935), - [sym_char_literal] = ACTIONS(935), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(933), - [sym_super] = ACTIONS(933), - [sym_crate] = ACTIONS(933), - [sym_metavariable] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(935), - [sym_float_literal] = ACTIONS(935), - }, - [STATE(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), - }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35143,61 +34916,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(158)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(199), + [STATE(156)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(935), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35259,6 +35032,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_EQ_GT] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_u8] = ACTIONS(937), + [anon_sym_i8] = ACTIONS(937), + [anon_sym_u16] = ACTIONS(937), + [anon_sym_i16] = ACTIONS(937), + [anon_sym_u32] = ACTIONS(937), + [anon_sym_i32] = ACTIONS(937), + [anon_sym_u64] = ACTIONS(937), + [anon_sym_i64] = ACTIONS(937), + [anon_sym_u128] = ACTIONS(937), + [anon_sym_i128] = ACTIONS(937), + [anon_sym_isize] = ACTIONS(937), + [anon_sym_usize] = ACTIONS(937), + [anon_sym_f32] = ACTIONS(937), + [anon_sym_f64] = ACTIONS(937), + [anon_sym_bool] = ACTIONS(937), + [anon_sym_str] = ACTIONS(937), + [anon_sym_char] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_AMP_EQ] = ACTIONS(939), + [anon_sym_PIPE_EQ] = ACTIONS(939), + [anon_sym_LT_LT_EQ] = ACTIONS(939), + [anon_sym_GT_GT_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [anon_sym__] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_COLON_COLON] = ACTIONS(939), + [anon_sym_DASH_GT] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(937), + [anon_sym_as] = ACTIONS(937), + [anon_sym_async] = ACTIONS(937), + [anon_sym_await] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [anon_sym_fn] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_gen] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_impl] = ACTIONS(937), + [anon_sym_let] = ACTIONS(937), + [anon_sym_loop] = ACTIONS(937), + [anon_sym_match] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(937), + [anon_sym_pub] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_trait] = ACTIONS(937), + [anon_sym_type] = ACTIONS(937), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsafe] = ACTIONS(937), + [anon_sym_use] = ACTIONS(937), + [anon_sym_where] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [sym_mutable_specifier] = ACTIONS(937), + [sym_integer_literal] = ACTIONS(939), + [aux_sym_string_literal_token1] = ACTIONS(939), + [sym_char_literal] = ACTIONS(939), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(937), + [sym_super] = ACTIONS(937), + [sym_crate] = ACTIONS(937), + [sym_metavariable] = ACTIONS(939), + [sym__raw_string_literal_start] = ACTIONS(939), + [sym_float_literal] = ACTIONS(939), + }, + [STATE(158)] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_u8] = ACTIONS(941), + [anon_sym_i8] = ACTIONS(941), + [anon_sym_u16] = ACTIONS(941), + [anon_sym_i16] = ACTIONS(941), + [anon_sym_u32] = ACTIONS(941), + [anon_sym_i32] = ACTIONS(941), + [anon_sym_u64] = ACTIONS(941), + [anon_sym_i64] = ACTIONS(941), + [anon_sym_u128] = ACTIONS(941), + [anon_sym_i128] = ACTIONS(941), + [anon_sym_isize] = ACTIONS(941), + [anon_sym_usize] = ACTIONS(941), + [anon_sym_f32] = ACTIONS(941), + [anon_sym_f64] = ACTIONS(941), + [anon_sym_bool] = ACTIONS(941), + [anon_sym_str] = ACTIONS(941), + [anon_sym_char] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PERCENT_EQ] = ACTIONS(943), + [anon_sym_CARET_EQ] = ACTIONS(943), + [anon_sym_AMP_EQ] = ACTIONS(943), + [anon_sym_PIPE_EQ] = ACTIONS(943), + [anon_sym_LT_LT_EQ] = ACTIONS(943), + [anon_sym_GT_GT_EQ] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(943), + [anon_sym__] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_COLON_COLON] = ACTIONS(943), + [anon_sym_DASH_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_await] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_fn] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_gen] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_impl] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_mod] = ACTIONS(941), + [anon_sym_pub] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_trait] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_unsafe] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_where] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [sym_mutable_specifier] = ACTIONS(941), + [sym_integer_literal] = ACTIONS(943), + [aux_sym_string_literal_token1] = ACTIONS(943), + [sym_char_literal] = ACTIONS(943), + [anon_sym_true] = ACTIONS(941), + [anon_sym_false] = ACTIONS(941), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(941), + [sym_super] = ACTIONS(941), + [sym_crate] = ACTIONS(941), + [sym_metavariable] = ACTIONS(943), + [sym__raw_string_literal_start] = ACTIONS(943), + [sym_float_literal] = ACTIONS(943), + }, [STATE(159)] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), @@ -35376,57 +35381,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(947), }, [STATE(160)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2785), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(161)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -35491,62 +35612,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(161)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [STATE(162)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(951), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35607,61 +35728,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(162)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [aux_sym__non_special_token_repeat1] = STATE(163), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(956), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym__] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_COLON_COLON] = ACTIONS(953), + [anon_sym_DASH_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), + }, + [STATE(164)] = { + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym_identifier] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(959), + [anon_sym_i8] = ACTIONS(959), + [anon_sym_u16] = ACTIONS(959), + [anon_sym_i16] = ACTIONS(959), + [anon_sym_u32] = ACTIONS(959), + [anon_sym_i32] = ACTIONS(959), + [anon_sym_u64] = ACTIONS(959), + [anon_sym_i64] = ACTIONS(959), + [anon_sym_u128] = ACTIONS(959), + [anon_sym_i128] = ACTIONS(959), + [anon_sym_isize] = ACTIONS(959), + [anon_sym_usize] = ACTIONS(959), + [anon_sym_f32] = ACTIONS(959), + [anon_sym_f64] = ACTIONS(959), + [anon_sym_bool] = ACTIONS(959), + [anon_sym_str] = ACTIONS(959), + [anon_sym_char] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(961), + [anon_sym__] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_async] = ACTIONS(959), + [anon_sym_await] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_fn] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_gen] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_impl] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_pub] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_static] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_unsafe] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [sym_mutable_specifier] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(961), + [aux_sym_string_literal_token1] = ACTIONS(961), + [sym_char_literal] = ACTIONS(961), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(959), + [sym_super] = ACTIONS(959), + [sym_crate] = ACTIONS(959), + [sym_metavariable] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(961), + [sym_float_literal] = ACTIONS(961), + }, + [STATE(165)] = { + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_PERCENT] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym__] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_COLON_COLON] = ACTIONS(965), + [anon_sym_DASH_GT] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_as] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_await] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_gen] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(963), + [anon_sym_match] = ACTIONS(963), + [anon_sym_mod] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_static] = ACTIONS(963), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_trait] = ACTIONS(963), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(963), + [anon_sym_unsafe] = ACTIONS(963), + [anon_sym_use] = ACTIONS(963), + [anon_sym_where] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [sym_mutable_specifier] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(965), + [aux_sym_string_literal_token1] = ACTIONS(965), + [sym_char_literal] = ACTIONS(965), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), + [sym__raw_string_literal_start] = ACTIONS(965), + [sym_float_literal] = ACTIONS(965), + }, + [STATE(166)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_let_condition] = STATE(3388), + [sym__let_chain] = STATE(3389), + [sym__condition] = STATE(3536), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(167)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(975), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35723,178 +36308,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(163)] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_EQ_GT] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u128] = ACTIONS(955), - [anon_sym_i128] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_str] = ACTIONS(955), - [anon_sym_char] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PERCENT_EQ] = ACTIONS(957), - [anon_sym_CARET_EQ] = ACTIONS(957), - [anon_sym_AMP_EQ] = ACTIONS(957), - [anon_sym_PIPE_EQ] = ACTIONS(957), - [anon_sym_LT_LT_EQ] = ACTIONS(957), - [anon_sym_GT_GT_EQ] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_DASH_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_async] = ACTIONS(955), - [anon_sym_await] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_default] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_fn] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_gen] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_impl] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_static] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_trait] = ACTIONS(955), - [anon_sym_type] = ACTIONS(955), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsafe] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_where] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [sym_mutable_specifier] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(957), - [aux_sym_string_literal_token1] = ACTIONS(957), - [sym_char_literal] = ACTIONS(957), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(955), - [sym_super] = ACTIONS(955), - [sym_crate] = ACTIONS(955), - [sym_metavariable] = ACTIONS(957), - [sym__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), + [STATE(168)] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u128] = ACTIONS(977), + [anon_sym_i128] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_str] = ACTIONS(977), + [anon_sym_char] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_PERCENT_EQ] = ACTIONS(979), + [anon_sym_CARET_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_DASH_GT] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_as] = ACTIONS(977), + [anon_sym_async] = ACTIONS(977), + [anon_sym_await] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_gen] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(977), + [anon_sym_loop] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_static] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_trait] = ACTIONS(977), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsafe] = ACTIONS(977), + [anon_sym_use] = ACTIONS(977), + [anon_sym_where] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [sym_mutable_specifier] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(979), + [aux_sym_string_literal_token1] = ACTIONS(979), + [sym_char_literal] = ACTIONS(979), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(977), + [sym_metavariable] = ACTIONS(979), + [sym__raw_string_literal_start] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), }, - [STATE(164)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(169)] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_EQ_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym__] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_DASH_GT] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_gen] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_where] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [sym_mutable_specifier] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym_metavariable] = ACTIONS(983), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [STATE(170)] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_EQ_GT] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_DASH_GT] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_await] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_gen] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [sym_mutable_specifier] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym_metavariable] = ACTIONS(987), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), + }, + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_EQ_GT] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u128] = ACTIONS(989), + [anon_sym_i128] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_str] = ACTIONS(989), + [anon_sym_char] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym__] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_DASH_GT] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_as] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_where] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [sym_mutable_specifier] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_crate] = ACTIONS(989), + [sym_metavariable] = ACTIONS(991), + [sym__raw_string_literal_start] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), + }, + [STATE(172)] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_EQ_GT] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_gen] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + }, + [STATE(173)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(959), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(997), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35955,178 +37004,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(165)] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PERCENT_EQ] = ACTIONS(963), - [anon_sym_CARET_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym_DASH_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_await] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_gen] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_impl] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_pub] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_union] = ACTIONS(961), - [anon_sym_unsafe] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_where] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [sym_mutable_specifier] = ACTIONS(961), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), - }, - [STATE(166)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(174)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(999), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(965), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36187,1169 +37120,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(167)] = { - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_gen] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [STATE(168)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2592), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_QMARK] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(971), - [anon_sym_i8] = ACTIONS(971), - [anon_sym_u16] = ACTIONS(971), - [anon_sym_i16] = ACTIONS(971), - [anon_sym_u32] = ACTIONS(971), - [anon_sym_i32] = ACTIONS(971), - [anon_sym_u64] = ACTIONS(971), - [anon_sym_i64] = ACTIONS(971), - [anon_sym_u128] = ACTIONS(971), - [anon_sym_i128] = ACTIONS(971), - [anon_sym_isize] = ACTIONS(971), - [anon_sym_usize] = ACTIONS(971), - [anon_sym_f32] = ACTIONS(971), - [anon_sym_f64] = ACTIONS(971), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_str] = ACTIONS(971), - [anon_sym_char] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_PERCENT] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PERCENT_EQ] = ACTIONS(973), - [anon_sym_CARET_EQ] = ACTIONS(973), - [anon_sym_AMP_EQ] = ACTIONS(973), - [anon_sym_PIPE_EQ] = ACTIONS(973), - [anon_sym_LT_LT_EQ] = ACTIONS(973), - [anon_sym_GT_GT_EQ] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(973), - [anon_sym__] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_COLON_COLON] = ACTIONS(973), - [anon_sym_DASH_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_async] = ACTIONS(971), - [anon_sym_await] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_default] = ACTIONS(971), - [anon_sym_enum] = ACTIONS(971), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_gen] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_pub] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_static] = ACTIONS(971), - [anon_sym_struct] = ACTIONS(971), - [anon_sym_trait] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_union] = ACTIONS(971), - [anon_sym_unsafe] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [sym_mutable_specifier] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(973), - [aux_sym_string_literal_token1] = ACTIONS(973), - [sym_char_literal] = ACTIONS(973), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(971), - [sym_super] = ACTIONS(971), - [sym_crate] = ACTIONS(971), - [sym_metavariable] = ACTIONS(973), - [sym__raw_string_literal_start] = ACTIONS(973), - [sym_float_literal] = ACTIONS(973), - }, - [STATE(170)] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym_metavariable] = ACTIONS(977), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - }, - [STATE(171)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(172)] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(981), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(981), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(984), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_PERCENT_EQ] = ACTIONS(981), - [anon_sym_CARET_EQ] = ACTIONS(981), - [anon_sym_AMP_EQ] = ACTIONS(981), - [anon_sym_PIPE_EQ] = ACTIONS(981), - [anon_sym_LT_LT_EQ] = ACTIONS(981), - [anon_sym_GT_GT_EQ] = ACTIONS(981), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(981), - [anon_sym__] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(981), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), - }, - [STATE(173)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(174)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(3162), - [sym__let_chain] = STATE(3165), - [sym__condition] = STATE(3509), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [STATE(175)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(176)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(177)] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), [sym_identifier] = ACTIONS(1001), [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_LPAREN] = ACTIONS(1003), @@ -37463,9 +37236,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1003), [sym_float_literal] = ACTIONS(1003), }, - [STATE(178)] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), [sym_identifier] = ACTIONS(1005), [anon_sym_SEMI] = ACTIONS(1007), [anon_sym_LPAREN] = ACTIONS(1007), @@ -37579,58 +37352,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1007), [sym_float_literal] = ACTIONS(1007), }, - [STATE(179)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(177)] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [anon_sym_DASH_EQ] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(887), + [anon_sym_SLASH_EQ] = ACTIONS(887), + [anon_sym_PERCENT_EQ] = ACTIONS(887), + [anon_sym_CARET_EQ] = ACTIONS(887), + [anon_sym_AMP_EQ] = ACTIONS(887), + [anon_sym_PIPE_EQ] = ACTIONS(887), + [anon_sym_LT_LT_EQ] = ACTIONS(887), + [anon_sym_GT_GT_EQ] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym__] = ACTIONS(885), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym_DASH_GT] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_gen] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [STATE(178)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_enum_variant_list_repeat1] = STATE(209), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1009), @@ -37695,62 +37584,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(180)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(179)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1011), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37811,9 +37700,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(181)] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), + [STATE(180)] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), [sym_identifier] = ACTIONS(1013), [anon_sym_SEMI] = ACTIONS(1015), [anon_sym_LPAREN] = ACTIONS(1015), @@ -37927,9 +37816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1015), [sym_float_literal] = ACTIONS(1015), }, - [STATE(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), + [STATE(181)] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), [sym_identifier] = ACTIONS(1017), [anon_sym_SEMI] = ACTIONS(1019), [anon_sym_LPAREN] = ACTIONS(1019), @@ -38043,23 +37932,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1019), [sym_float_literal] = ACTIONS(1019), }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), + [STATE(182)] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(163), [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(1023), [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_LBRACK] = ACTIONS(1023), [anon_sym_RBRACK] = ACTIONS(1023), [anon_sym_LBRACE] = ACTIONS(1023), [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), [anon_sym_u8] = ACTIONS(1021), [anon_sym_i8] = ACTIONS(1021), [anon_sym_u16] = ACTIONS(1021), @@ -38077,44 +37967,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1021), [anon_sym_str] = ACTIONS(1021), [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), [anon_sym_SQUOTE] = ACTIONS(1021), [anon_sym_as] = ACTIONS(1021), [anon_sym_async] = ACTIONS(1021), @@ -38155,182 +38045,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1021), [sym_super] = ACTIONS(1021), [sym_crate] = ACTIONS(1021), - [sym_metavariable] = ACTIONS(1023), [sym__raw_string_literal_start] = ACTIONS(1023), [sym_float_literal] = ACTIONS(1023), }, - [STATE(184)] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_fn] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_gen] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_impl] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_pub] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1025), - [anon_sym_union] = ACTIONS(1025), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [sym_mutable_specifier] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1027), - [aux_sym_string_literal_token1] = ACTIONS(1027), - [sym_char_literal] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), - [sym_crate] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), - }, - [STATE(185)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(183)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38391,62 +38164,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(186)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(184)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1027), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38507,107 +38280,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(187)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2614), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(465), + [STATE(185)] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym__] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_gen] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [sym_mutable_specifier] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym__raw_string_literal_start] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), + }, + [STATE(186)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38616,71 +38505,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(188)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [STATE(187)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2618), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2651), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38698,12 +38587,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38714,7 +38603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38739,64 +38628,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(189)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [STATE(188)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2727), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2657), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38814,12 +38703,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38830,7 +38719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38855,64 +38744,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(189)] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, [STATE(190)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2663), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2600), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38930,12 +38935,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38946,7 +38951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38972,63 +38977,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2713), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2673), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39046,12 +39051,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39062,7 +39067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39088,63 +39093,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2714), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2675), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39162,12 +39167,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39178,7 +39183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39204,63 +39209,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2733), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2696), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39278,12 +39283,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39294,7 +39299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39320,63 +39325,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2748), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2714), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39394,12 +39399,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39410,7 +39415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39436,63 +39441,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2749), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2715), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39510,12 +39515,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39526,7 +39531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39552,63 +39557,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2758), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(3111), + [sym__let_chain] = STATE(3123), + [sym__condition] = STATE(2726), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39626,12 +39631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39642,7 +39647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39668,291 +39673,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u128] = ACTIONS(1033), - [anon_sym_i128] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_str] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_PLUS_EQ] = ACTIONS(1035), - [anon_sym_DASH_EQ] = ACTIONS(1035), - [anon_sym_STAR_EQ] = ACTIONS(1035), - [anon_sym_SLASH_EQ] = ACTIONS(1035), - [anon_sym_PERCENT_EQ] = ACTIONS(1035), - [anon_sym_CARET_EQ] = ACTIONS(1035), - [anon_sym_AMP_EQ] = ACTIONS(1035), - [anon_sym_PIPE_EQ] = ACTIONS(1035), - [anon_sym_LT_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_GT_EQ] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym_DASH_GT] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_async] = ACTIONS(1033), - [anon_sym_await] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_fn] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_gen] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_impl] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_pub] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_unsafe] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [sym_mutable_specifier] = ACTIONS(1033), - [sym_integer_literal] = ACTIONS(1035), - [aux_sym_string_literal_token1] = ACTIONS(1035), - [sym_char_literal] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym__raw_string_literal_start] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), - }, - [STATE(198)] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_DASH_GT] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_where] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [sym_mutable_specifier] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), - }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1035), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -40013,38 +39788,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(200)] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), + [STATE(198)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(199)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(200)] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(201)] = { + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), [anon_sym_str] = ACTIONS(1041), [anon_sym_char] = ACTIONS(1041), [anon_sym_DASH] = ACTIONS(1041), @@ -40128,288 +40248,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1043), [sym_float_literal] = ACTIONS(1043), }, - [STATE(201)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, [STATE(202)] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), + [sym_identifier] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_RBRACK] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_EQ_GT] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_u8] = ACTIONS(1021), + [anon_sym_i8] = ACTIONS(1021), + [anon_sym_u16] = ACTIONS(1021), + [anon_sym_i16] = ACTIONS(1021), + [anon_sym_u32] = ACTIONS(1021), + [anon_sym_i32] = ACTIONS(1021), + [anon_sym_u64] = ACTIONS(1021), + [anon_sym_i64] = ACTIONS(1021), + [anon_sym_u128] = ACTIONS(1021), + [anon_sym_i128] = ACTIONS(1021), + [anon_sym_isize] = ACTIONS(1021), + [anon_sym_usize] = ACTIONS(1021), + [anon_sym_f32] = ACTIONS(1021), + [anon_sym_f64] = ACTIONS(1021), + [anon_sym_bool] = ACTIONS(1021), + [anon_sym_str] = ACTIONS(1021), + [anon_sym_char] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PERCENT] = ACTIONS(1021), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1023), + [anon_sym_PIPE_PIPE] = ACTIONS(1023), + [anon_sym_LT_LT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PERCENT_EQ] = ACTIONS(1023), + [anon_sym_CARET_EQ] = ACTIONS(1023), + [anon_sym_AMP_EQ] = ACTIONS(1023), + [anon_sym_PIPE_EQ] = ACTIONS(1023), + [anon_sym_LT_LT_EQ] = ACTIONS(1023), + [anon_sym_GT_GT_EQ] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_EQ_EQ] = ACTIONS(1023), + [anon_sym_BANG_EQ] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT_EQ] = ACTIONS(1023), + [anon_sym_LT_EQ] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_COLON_COLON] = ACTIONS(1023), + [anon_sym_DASH_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_async] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_default] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_fn] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_gen] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_impl] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_mod] = ACTIONS(1021), + [anon_sym_pub] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_trait] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_unsafe] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_where] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [sym_mutable_specifier] = ACTIONS(1021), + [sym_integer_literal] = ACTIONS(1023), + [aux_sym_string_literal_token1] = ACTIONS(1023), + [sym_char_literal] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1021), + [sym_super] = ACTIONS(1021), + [sym_crate] = ACTIONS(1021), + [sym__raw_string_literal_start] = ACTIONS(1023), + [sym_float_literal] = ACTIONS(1023), }, [STATE(203)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_EQ_GT] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_DASH_GT] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_await] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_gen] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [sym_mutable_specifier] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), + }, + [STATE(204)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40473,699 +40593,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_EQ_GT] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1001), - [anon_sym_i8] = ACTIONS(1001), - [anon_sym_u16] = ACTIONS(1001), - [anon_sym_i16] = ACTIONS(1001), - [anon_sym_u32] = ACTIONS(1001), - [anon_sym_i32] = ACTIONS(1001), - [anon_sym_u64] = ACTIONS(1001), - [anon_sym_i64] = ACTIONS(1001), - [anon_sym_u128] = ACTIONS(1001), - [anon_sym_i128] = ACTIONS(1001), - [anon_sym_isize] = ACTIONS(1001), - [anon_sym_usize] = ACTIONS(1001), - [anon_sym_f32] = ACTIONS(1001), - [anon_sym_f64] = ACTIONS(1001), - [anon_sym_bool] = ACTIONS(1001), - [anon_sym_str] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym__] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_DASH_GT] = ACTIONS(1003), - [anon_sym_POUND] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_gen] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_impl] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_pub] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_trait] = ACTIONS(1001), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [sym_mutable_specifier] = ACTIONS(1001), - [sym_integer_literal] = ACTIONS(1003), - [aux_sym_string_literal_token1] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_crate] = ACTIONS(1001), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, [STATE(205)] = { [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), - }, - [STATE(207)] = { - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_gen] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(209)] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS_EQ] = ACTIONS(1027), - [anon_sym_DASH_EQ] = ACTIONS(1027), - [anon_sym_STAR_EQ] = ACTIONS(1027), - [anon_sym_SLASH_EQ] = ACTIONS(1027), - [anon_sym_PERCENT_EQ] = ACTIONS(1027), - [anon_sym_CARET_EQ] = ACTIONS(1027), - [anon_sym_AMP_EQ] = ACTIONS(1027), - [anon_sym_PIPE_EQ] = ACTIONS(1027), - [anon_sym_LT_LT_EQ] = ACTIONS(1027), - [anon_sym_GT_GT_EQ] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1027), - [anon_sym_BANG_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1027), - [anon_sym_LT_EQ] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_COLON_COLON] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_fn] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_gen] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_impl] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_pub] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1025), - [anon_sym_union] = ACTIONS(1025), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [sym_mutable_specifier] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1027), - [aux_sym_string_literal_token1] = ACTIONS(1027), - [sym_char_literal] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), - [sym_crate] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), - }, - [STATE(210)] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), [sym_identifier] = ACTIONS(1045), [anon_sym_SEMI] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1047), @@ -41278,173 +40708,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1047), [sym_float_literal] = ACTIONS(1047), }, - [STATE(211)] = { - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ_GT] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1049), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_DASH_GT] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [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_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), - }, - [STATE(212)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(206)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41508,58 +40823,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(213)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(207)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41623,58 +40938,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(214)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_PERCENT] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym__] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_COLON_COLON] = ACTIONS(965), + [anon_sym_DASH_GT] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_as] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_await] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_gen] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(963), + [anon_sym_match] = ACTIONS(963), + [anon_sym_mod] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_static] = ACTIONS(963), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_trait] = ACTIONS(963), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(963), + [anon_sym_unsafe] = ACTIONS(963), + [anon_sym_use] = ACTIONS(963), + [anon_sym_where] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [sym_mutable_specifier] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(965), + [aux_sym_string_literal_token1] = ACTIONS(965), + [sym_char_literal] = ACTIONS(965), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_crate] = ACTIONS(963), + [sym__raw_string_literal_start] = ACTIONS(965), + [sym_float_literal] = ACTIONS(965), + }, + [STATE(209)] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41738,60 +41168,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_EQ_GT] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_DASH_GT] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [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_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), + }, + [STATE(211)] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_EQ_GT] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u128] = ACTIONS(989), + [anon_sym_i128] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_str] = ACTIONS(989), + [anon_sym_char] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym__] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_DASH_GT] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_as] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_where] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [sym_mutable_specifier] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_crate] = ACTIONS(989), + [sym__raw_string_literal_start] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), + }, + [STATE(212)] = { + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_EQ_GT] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_gen] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + }, + [STATE(213)] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_identifier] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(923), + [anon_sym_i8] = ACTIONS(923), + [anon_sym_u16] = ACTIONS(923), + [anon_sym_i16] = ACTIONS(923), + [anon_sym_u32] = ACTIONS(923), + [anon_sym_i32] = ACTIONS(923), + [anon_sym_u64] = ACTIONS(923), + [anon_sym_i64] = ACTIONS(923), + [anon_sym_u128] = ACTIONS(923), + [anon_sym_i128] = ACTIONS(923), + [anon_sym_isize] = ACTIONS(923), + [anon_sym_usize] = ACTIONS(923), + [anon_sym_f32] = ACTIONS(923), + [anon_sym_f64] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_str] = ACTIONS(923), + [anon_sym_char] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_STAR_EQ] = ACTIONS(925), + [anon_sym_SLASH_EQ] = ACTIONS(925), + [anon_sym_PERCENT_EQ] = ACTIONS(925), + [anon_sym_CARET_EQ] = ACTIONS(925), + [anon_sym_AMP_EQ] = ACTIONS(925), + [anon_sym_PIPE_EQ] = ACTIONS(925), + [anon_sym_LT_LT_EQ] = ACTIONS(925), + [anon_sym_GT_GT_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym__] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_COLON_COLON] = ACTIONS(925), + [anon_sym_DASH_GT] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_as] = ACTIONS(923), + [anon_sym_async] = ACTIONS(923), + [anon_sym_await] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_enum] = ACTIONS(923), + [anon_sym_fn] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_gen] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_impl] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_pub] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_static] = ACTIONS(923), + [anon_sym_struct] = ACTIONS(923), + [anon_sym_trait] = ACTIONS(923), + [anon_sym_type] = ACTIONS(923), + [anon_sym_union] = ACTIONS(923), + [anon_sym_unsafe] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [sym_mutable_specifier] = ACTIONS(923), + [sym_integer_literal] = ACTIONS(925), + [aux_sym_string_literal_token1] = ACTIONS(925), + [sym_char_literal] = ACTIONS(925), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(923), + [sym_super] = ACTIONS(923), + [sym_crate] = ACTIONS(923), + [sym__raw_string_literal_start] = ACTIONS(925), + [sym_float_literal] = ACTIONS(925), + }, + [STATE(214)] = { + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u128] = ACTIONS(977), + [anon_sym_i128] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_str] = ACTIONS(977), + [anon_sym_char] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_PERCENT_EQ] = ACTIONS(979), + [anon_sym_CARET_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_DASH_GT] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_as] = ACTIONS(977), + [anon_sym_async] = ACTIONS(977), + [anon_sym_await] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_gen] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(977), + [anon_sym_loop] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_static] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_trait] = ACTIONS(977), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsafe] = ACTIONS(977), + [anon_sym_use] = ACTIONS(977), + [anon_sym_where] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [sym_mutable_specifier] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(979), + [aux_sym_string_literal_token1] = ACTIONS(979), + [sym_char_literal] = ACTIONS(979), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(977), + [sym__raw_string_literal_start] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), + }, [STATE(215)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1517), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1053), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41812,13 +41815,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41853,218 +41858,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(216)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_let_condition] = STATE(2669), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [STATE(217)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_let_condition] = STATE(2669), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(218)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1493), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42073,112 +42192,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(339), + [STATE(219)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1517), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42187,68 +42306,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), + [STATE(220)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1543), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -42266,13 +42385,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1073), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), @@ -42289,8 +42410,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_raw] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(483), [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), @@ -42308,61 +42427,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1493), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -42380,33 +42499,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym__] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1075), - [anon_sym_raw] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42422,60 +42541,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(221)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(217), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1543), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1079), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42496,13 +42613,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1073), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42536,288 +42655,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1137), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_unsafe] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1161), - [anon_sym_move] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1167), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1173), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1182), - [sym_crate] = ACTIONS(1182), - [sym_metavariable] = ACTIONS(1185), - [sym__raw_string_literal_start] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1170), - }, [STATE(223)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1493), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42838,13 +42727,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1059), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42878,60 +42769,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(232), + [STATE(224)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1193), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42957,7 +42846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -42975,6 +42864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1077), + [anon_sym_raw] = ACTIONS(1079), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -42992,289 +42883,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(225)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1851), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1081), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1083), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, [STATE(226)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2995), - [sym_variadic_parameter] = STATE(2995), - [sym_parameter] = STATE(2995), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2730), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1705), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(227)] = { - [sym_attribute_item] = STATE(419), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2859), - [sym_variadic_parameter] = STATE(2859), - [sym_parameter] = STATE(2859), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2651), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(228)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1840), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(967), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43293,14 +43070,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym__] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1281), + [anon_sym_DASH_GT] = ACTIONS(1087), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43334,61 +43111,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(229)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1828), + [STATE(227)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1845), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1913), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1762), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(967), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43407,14 +43184,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1285), + [anon_sym_DASH_GT] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43448,105 +43225,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, + [STATE(228)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_tuple_expression_repeat1] = STATE(248), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(229)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1109), + [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_DASH] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1124), + [anon_sym_COLON_COLON] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_gen] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_loop] = ACTIONS(1157), + [anon_sym_match] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_yield] = ACTIONS(1175), + [anon_sym_move] = ACTIONS(1178), + [anon_sym_try] = ACTIONS(1181), + [sym_integer_literal] = ACTIONS(1184), + [aux_sym_string_literal_token1] = ACTIONS(1187), + [sym_char_literal] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1199), + [sym__raw_string_literal_start] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1184), + }, [STATE(230)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(465), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1205), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43555,68 +43560,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(231)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -43634,15 +43639,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -43659,6 +43662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1207), + [anon_sym_raw] = ACTIONS(1209), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), @@ -43677,59 +43682,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(232)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3043), + [sym_variadic_parameter] = STATE(3043), + [sym_parameter] = STATE(3043), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2806), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2515), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(233)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [aux_sym_tuple_expression_repeat1] = STATE(235), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1287), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43790,60 +43909,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(215), + [STATE(234)] = { + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3128), + [sym_variadic_parameter] = STATE(3128), + [sym_parameter] = STATE(3128), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2837), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(235)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(229), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1315), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43904,289 +44137,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(234)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(236)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [aux_sym_tuple_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1858), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1490), + [STATE(238)] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3043), + [sym_variadic_parameter] = STATE(3043), + [sym_parameter] = STATE(3043), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2806), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2515), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(239)] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3043), + [sym_variadic_parameter] = STATE(3043), + [sym_parameter] = STATE(3043), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2806), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(240)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1534), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -44204,15 +44665,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), @@ -44229,6 +44688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1329), + [anon_sym_raw] = ACTIONS(1331), [anon_sym_yield] = ACTIONS(483), [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), @@ -44246,61 +44707,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1490), + [STATE(241)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3072), + [sym_variadic_parameter] = STATE(3072), + [sym_parameter] = STATE(3072), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2693), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(242)] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3043), + [sym_variadic_parameter] = STATE(3043), + [sym_parameter] = STATE(3043), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2806), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2515), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(243)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(2669), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -44318,15 +45008,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -44336,6 +45024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -44360,56 +45049,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), + [STATE(244)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_let_condition] = STATE(2669), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(245)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1493), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44437,10 +45240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44474,740 +45277,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(242)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(244)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(245)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), + [STATE(246)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1543), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45235,10 +45354,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1073), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45272,61 +45391,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(246)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1722), + [STATE(247)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1721), [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(967), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -45344,12 +45463,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -45367,8 +45486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1331), - [anon_sym_raw] = ACTIONS(1333), + [sym_mutable_specifier] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1345), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -45386,172 +45505,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(247)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(248)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), + [aux_sym_tuple_expression_repeat1] = STATE(229), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45572,15 +45579,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45615,57 +45620,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(249)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), + [aux_sym_tuple_expression_repeat1] = STATE(230), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45691,7 +45698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -45709,8 +45716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1339), - [anon_sym_raw] = ACTIONS(1341), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -45729,55 +45734,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(250)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1517), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(251)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1517), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45805,10 +45924,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45842,175 +45961,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(251)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(252)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1543), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -46028,33 +46033,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1073), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46071,1119 +46076,1119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(253)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(254)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(255)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(256)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(257)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(258)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(259)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(260)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(261)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(262)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47192,68 +47197,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(263)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1490), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -47271,31 +47276,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47312,102 +47317,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(264)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47416,110 +47421,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(265)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47528,61 +47533,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(266)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(339), @@ -47612,7 +47617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47648,102 +47653,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(267)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47752,61 +47757,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(268)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(339), @@ -47836,7 +47841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47872,59 +47877,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(269)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(270)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47948,27 +48065,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47983,56 +48100,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [STATE(271)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48060,7 +48177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48095,56 +48212,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48172,7 +48289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48207,56 +48324,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), + [STATE(273)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(274)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48319,56 +48548,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48431,56 +48660,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), + [STATE(276)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(277)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48508,7 +48849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48543,61 +48884,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1490), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -48615,12 +48956,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48655,56 +48996,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48732,7 +49073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48767,168 +49108,1288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(277)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(278)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), + [STATE(281)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(282)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(283)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1812), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(284)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(285)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(286)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(287)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(288)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(289)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(290)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48956,7 +50417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48991,103 +50452,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1548), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(339), + [STATE(292)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49096,110 +50557,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(339), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(294)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49208,63 +50781,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), + [STATE(295)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49292,7 +50865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49327,56 +50900,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1558), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49404,7 +50977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49439,56 +51012,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49516,7 +51089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49551,103 +51124,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(339), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49656,63 +51229,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(300)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49775,60 +51460,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(302)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49855,24 +51652,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49887,56 +51684,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(304)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(305)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(306)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49999,56 +52132,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(308)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(309)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50111,56 +52468,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [STATE(310)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(2884), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2847), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1281), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(311)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50223,56 +52692,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [STATE(312)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1527), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50300,7 +52769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50335,56 +52804,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50447,168 +52916,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(292)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50671,60 +53028,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(484), + [sym_match_expression] = STATE(484), + [sym_while_expression] = STATE(484), + [sym_loop_expression] = STATE(484), + [sym_for_expression] = STATE(484), + [sym_const_block] = STATE(484), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3733), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(484), + [sym_async_block] = STATE(484), + [sym_gen_block] = STATE(484), + [sym_try_block] = STATE(484), + [sym_block] = STATE(484), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1387), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50751,24 +53108,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(1389), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1391), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1401), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1405), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1407), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50783,56 +53140,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50860,7 +53217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50895,56 +53252,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [STATE(317)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(2884), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2847), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1281), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(318)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50972,7 +53441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51007,60 +53476,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [STATE(319)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51087,24 +53556,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51119,56 +53588,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [STATE(320)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51231,173 +53700,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1623), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51415,12 +53772,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51455,103 +53812,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(465), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51560,68 +53917,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51639,12 +53996,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51679,61 +54036,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1490), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51751,31 +54108,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51791,103 +54148,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(465), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51896,68 +54253,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1490), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51975,12 +54332,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52015,61 +54372,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1490), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1527), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52087,12 +54444,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52127,103 +54484,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(465), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52232,68 +54589,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1490), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52311,31 +54668,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52351,103 +54708,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(465), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52456,110 +54813,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(465), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52568,110 +54925,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(465), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(477), + [sym_match_expression] = STATE(477), + [sym_while_expression] = STATE(477), + [sym_loop_expression] = STATE(477), + [sym_for_expression] = STATE(477), + [sym_const_block] = STATE(477), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3733), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(477), + [sym_async_block] = STATE(477), + [sym_gen_block] = STATE(477), + [sym_try_block] = STATE(477), + [sym_block] = STATE(477), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(333)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(2884), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2847), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1281), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(334)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52680,63 +55261,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), + [STATE(335)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52764,7 +55345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52799,103 +55380,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(465), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52904,222 +55485,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(465), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53128,68 +55597,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1490), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53207,12 +55676,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53247,56 +55716,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), + [STATE(339)] = { + [sym_else_clause] = STATE(416), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_macro_rules_BANG] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), + [anon_sym_PERCENT_EQ] = ACTIONS(1413), + [anon_sym_CARET_EQ] = ACTIONS(1413), + [anon_sym_AMP_EQ] = ACTIONS(1413), + [anon_sym_PIPE_EQ] = ACTIONS(1413), + [anon_sym_LT_LT_EQ] = ACTIONS(1413), + [anon_sym_GT_GT_EQ] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_as] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_gen] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_let] = ACTIONS(1415), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [anon_sym_mod] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_unsafe] = ACTIONS(1415), + [anon_sym_use] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_move] = ACTIONS(1415), + [anon_sym_try] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), + }, + [STATE(340)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53324,7 +55905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53359,103 +55940,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(465), + [STATE(341)] = { + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3236), + [sym_variadic_parameter] = STATE(3236), + [sym_parameter] = STATE(3236), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(342)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1435), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53464,222 +56157,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(319)] = { - [sym_else_clause] = STATE(414), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1393), - [sym_identifier] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_macro_rules_BANG] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [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), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), - }, - [STATE(320)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(465), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53688,111 +56269,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(465), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(484), + [sym_match_expression] = STATE(484), + [sym_while_expression] = STATE(484), + [sym_loop_expression] = STATE(484), + [sym_for_expression] = STATE(484), + [sym_const_block] = STATE(484), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3733), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(484), + [sym_async_block] = STATE(484), + [sym_gen_block] = STATE(484), + [sym_try_block] = STATE(484), + [sym_block] = STATE(484), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1391), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1407), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53800,110 +56381,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(465), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53912,68 +56493,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1490), + [STATE(346)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53991,12 +56572,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54031,104 +56612,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(465), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(477), + [sym_match_expression] = STATE(477), + [sym_while_expression] = STATE(477), + [sym_loop_expression] = STATE(477), + [sym_for_expression] = STATE(477), + [sym_const_block] = STATE(477), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3733), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(477), + [sym_async_block] = STATE(477), + [sym_gen_block] = STATE(477), + [sym_try_block] = STATE(477), + [sym_block] = STATE(477), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1391), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1407), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54136,110 +56717,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(465), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54248,68 +56829,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1490), + [STATE(349)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(350)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1435), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54327,12 +57020,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54367,61 +57060,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1490), + [STATE(351)] = { + [sym_bracketed_type] = STATE(3631), + [sym_generic_function] = STATE(1708), + [sym_generic_type_with_turbofish] = STATE(3029), + [sym__expression_except_range] = STATE(1700), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1614), + [sym_scoped_type_identifier_in_expression_position] = STATE(3356), + [sym_range_expression] = STATE(1712), + [sym_unary_expression] = STATE(1708), + [sym_try_expression] = STATE(1708), + [sym_reference_expression] = STATE(1708), + [sym_binary_expression] = STATE(1708), + [sym_assignment_expression] = STATE(1708), + [sym_compound_assignment_expr] = STATE(1708), + [sym_type_cast_expression] = STATE(1708), + [sym_return_expression] = STATE(1708), + [sym_yield_expression] = STATE(1708), + [sym_call_expression] = STATE(1708), + [sym_array_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1708), + [sym_tuple_expression] = STATE(1708), + [sym_unit_expression] = STATE(1708), + [sym_struct_expression] = STATE(1708), + [sym_if_expression] = STATE(1708), + [sym_match_expression] = STATE(1708), + [sym_while_expression] = STATE(1708), + [sym_loop_expression] = STATE(1708), + [sym_for_expression] = STATE(1708), + [sym_const_block] = STATE(1708), + [sym_closure_expression] = STATE(1708), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3739), + [sym_break_expression] = STATE(1708), + [sym_continue_expression] = STATE(1708), + [sym_index_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_field_expression] = STATE(1650), + [sym_unsafe_block] = STATE(1708), + [sym_async_block] = STATE(1708), + [sym_gen_block] = STATE(1708), + [sym_try_block] = STATE(1708), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1708), + [sym_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(352)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54439,12 +57244,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54479,61 +57284,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1490), + [STATE(353)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54551,12 +57356,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54591,61 +57396,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1490), + [STATE(354)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54663,12 +57468,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54703,61 +57508,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1490), + [STATE(355)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54775,12 +57580,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54815,61 +57620,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), + [STATE(356)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54887,31 +57692,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54927,56 +57732,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55039,1447 +57844,887 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(359)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1527), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(360)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(361)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(362)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1922), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(340)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(465), + [STATE(365)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56488,222 +58733,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(465), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56712,63 +58845,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56831,103 +58964,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(465), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56936,292 +59069,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(351)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(352)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), + [STATE(369)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -57239,12 +59148,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -57279,56 +59188,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), + [STATE(370)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57391,168 +59300,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(354)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57615,168 +59412,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(356)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(357)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57839,56 +59636,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57951,61 +59748,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -58023,12 +59820,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58063,173 +59860,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(360)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1490), + [STATE(377)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -58247,12 +60044,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58287,103 +60084,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(339), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58392,292 +60189,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(365)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1490), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1435), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -58695,31 +60268,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58735,168 +60308,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), + [STATE(380)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58959,61 +60420,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1490), + [STATE(381)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -59031,12 +60492,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(913), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -59071,439 +60532,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(339), + [STATE(382)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59512,110 +60637,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(339), + [STATE(383)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(219), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59624,110 +60749,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(339), + [STATE(384)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59736,110 +60861,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(339), + [STATE(385)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1634), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59848,68 +60973,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1490), + [STATE(386)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1646), + [sym_macro_invocation] = STATE(1528), [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(909), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -59927,12 +61052,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1061), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -59967,103 +61092,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_identifier] = ACTIONS(339), + [STATE(387)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(2951), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(250), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60072,63 +61197,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), + [STATE(388)] = { + [sym_bracketed_type] = STATE(3505), + [sym_generic_function] = STATE(1463), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1277), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(1528), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3386), + [sym_range_expression] = STATE(1494), + [sym_unary_expression] = STATE(1463), + [sym_try_expression] = STATE(1463), + [sym_reference_expression] = STATE(1463), + [sym_binary_expression] = STATE(1463), + [sym_assignment_expression] = STATE(1463), + [sym_compound_assignment_expr] = STATE(1463), + [sym_type_cast_expression] = STATE(1463), + [sym_return_expression] = STATE(1463), + [sym_yield_expression] = STATE(1463), + [sym_call_expression] = STATE(1463), + [sym_array_expression] = STATE(1463), + [sym_parenthesized_expression] = STATE(1463), + [sym_tuple_expression] = STATE(1463), + [sym_unit_expression] = STATE(1463), + [sym_struct_expression] = STATE(1463), + [sym_if_expression] = STATE(1463), + [sym_match_expression] = STATE(1463), + [sym_while_expression] = STATE(1463), + [sym_loop_expression] = STATE(1463), + [sym_for_expression] = STATE(1463), + [sym_const_block] = STATE(1463), + [sym_closure_expression] = STATE(1463), + [sym_closure_parameters] = STATE(251), + [sym_label] = STATE(3672), + [sym_break_expression] = STATE(1463), + [sym_continue_expression] = STATE(1463), + [sym_index_expression] = STATE(1463), + [sym_await_expression] = STATE(1463), + [sym_field_expression] = STATE(1161), + [sym_unsafe_block] = STATE(1463), + [sym_async_block] = STATE(1463), + [sym_gen_block] = STATE(1463), + [sym_try_block] = STATE(1463), + [sym_block] = STATE(1463), + [sym__literal] = STATE(1463), + [sym_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60191,1236 +61316,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [STATE(389)] = { + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [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_LBRACK] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_PIPE_PIPE] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1421), + [anon_sym_GT_GT] = ACTIONS(1421), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_CARET_EQ] = ACTIONS(1419), + [anon_sym_AMP_EQ] = ACTIONS(1419), + [anon_sym_PIPE_EQ] = ACTIONS(1419), + [anon_sym_LT_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_GT_EQ] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_move] = ACTIONS(1421), + [anon_sym_try] = 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), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1626), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(389)] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [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_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym__raw_string_literal_start] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), }, [STATE(390)] = { [sym_line_comment] = STATE(390), @@ -61867,114 +61872,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1435), }, [STATE(394)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3006), - [sym_variadic_parameter] = STATE(3006), - [sym_parameter] = STATE(3006), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3399), + [sym_variadic_parameter] = STATE(3399), + [sym_parameter] = STATE(3399), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2949), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(395)] = { [sym_line_comment] = STATE(395), @@ -62097,9 +62102,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1447), [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1445), [anon_sym_u8] = ACTIONS(1447), [anon_sym_i8] = ACTIONS(1447), [anon_sym_u16] = ACTIONS(1447), @@ -62118,41 +62123,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1447), [anon_sym_char] = ACTIONS(1447), [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), [anon_sym_BANG] = ACTIONS(1447), [anon_sym_AMP] = ACTIONS(1447), [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1447), [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), [anon_sym_COLON_COLON] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(1445), [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1447), [anon_sym_async] = ACTIONS(1447), [anon_sym_break] = ACTIONS(1447), [anon_sym_const] = ACTIONS(1447), @@ -62199,6 +62204,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(397)] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(398)] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), [ts_builtin_sym_end] = ACTIONS(1453), [sym_identifier] = ACTIONS(1455), [anon_sym_SEMI] = ACTIONS(1453), @@ -62306,9 +62421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1453), [sym_float_literal] = ACTIONS(1453), }, - [STATE(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1457), [sym_identifier] = ACTIONS(1459), [anon_sym_SEMI] = ACTIONS(1457), @@ -62416,9 +62531,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1457), [sym_float_literal] = ACTIONS(1457), }, - [STATE(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), + [STATE(400)] = { + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), [ts_builtin_sym_end] = ACTIONS(1461), [sym_identifier] = ACTIONS(1463), [anon_sym_SEMI] = ACTIONS(1461), @@ -62526,9 +62641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1461), [sym_float_literal] = ACTIONS(1461), }, - [STATE(400)] = { - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), + [STATE(401)] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), [ts_builtin_sym_end] = ACTIONS(1465), [sym_identifier] = ACTIONS(1467), [anon_sym_SEMI] = ACTIONS(1465), @@ -62636,116 +62751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1465), [sym_float_literal] = ACTIONS(1465), }, - [STATE(401)] = { - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_macro_rules_BANG] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_move] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym_metavariable] = ACTIONS(1043), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, [STATE(402)] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), @@ -62757,9 +62762,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1469), [anon_sym_LBRACE] = ACTIONS(1469), [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1475), [anon_sym_u8] = ACTIONS(1471), [anon_sym_i8] = ACTIONS(1471), [anon_sym_u16] = ACTIONS(1471), @@ -62778,41 +62783,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1471), [anon_sym_char] = ACTIONS(1471), [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), [anon_sym_BANG] = ACTIONS(1471), [anon_sym_AMP] = ACTIONS(1471), [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1469), - [anon_sym_DASH_EQ] = ACTIONS(1469), - [anon_sym_STAR_EQ] = ACTIONS(1469), - [anon_sym_SLASH_EQ] = ACTIONS(1469), - [anon_sym_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_CARET_EQ] = ACTIONS(1469), - [anon_sym_AMP_EQ] = ACTIONS(1469), - [anon_sym_PIPE_EQ] = ACTIONS(1469), - [anon_sym_LT_LT_EQ] = ACTIONS(1469), - [anon_sym_GT_GT_EQ] = ACTIONS(1469), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1473), [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), [anon_sym_COLON_COLON] = ACTIONS(1469), [anon_sym_POUND] = ACTIONS(1469), [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1473), [anon_sym_async] = ACTIONS(1471), [anon_sym_break] = ACTIONS(1471), [anon_sym_const] = ACTIONS(1471), @@ -62859,116 +62864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(403)] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [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_LBRACK] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_CARET_EQ] = ACTIONS(1473), - [anon_sym_AMP_EQ] = ACTIONS(1473), - [anon_sym_PIPE_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_GT_EQ] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_move] = ACTIONS(1475), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), - }, - [STATE(404)] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), [ts_builtin_sym_end] = ACTIONS(1477), [sym_identifier] = ACTIONS(1479), [anon_sym_SEMI] = ACTIONS(1477), @@ -63076,6 +62971,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1477), [sym_float_literal] = ACTIONS(1477), }, + [STATE(404)] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_macro_rules_BANG] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_move] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym_metavariable] = ACTIONS(1043), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, [STATE(405)] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), @@ -63297,1218 +63302,1108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1485), }, [STATE(407)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3084), - [sym_variadic_parameter] = STATE(3084), - [sym_parameter] = STATE(3084), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [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_LBRACK] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_move] = ACTIONS(1491), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), }, [STATE(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_macro_rules_BANG] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_move] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [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_LBRACK] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_move] = ACTIONS(1495), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym__raw_string_literal_start] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_macro_rules_BANG] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_async] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_gen] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_impl] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_mod] = ACTIONS(1493), - [anon_sym_pub] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_trait] = ACTIONS(1493), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_unsafe] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym__raw_string_literal_start] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [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_LBRACK] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), }, [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_macro_rules_BANG] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_unsafe] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), }, [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_macro_rules_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_move] = ACTIONS(1501), - [anon_sym_try] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [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_LBRACK] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [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_LBRACK] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1511), + [anon_sym_move] = ACTIONS(1511), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [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_LBRACK] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1515), + [anon_sym_move] = ACTIONS(1515), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), }, [STATE(414)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3074), + [sym_variadic_parameter] = STATE(3074), + [sym_parameter] = STATE(3074), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2818), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(415)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(2874), + [sym_variadic_parameter] = STATE(2874), + [sym_parameter] = STATE(2874), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2607), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_macro_rules_BANG] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_PERCENT] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1517), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PERCENT_EQ] = ACTIONS(1515), - [anon_sym_CARET_EQ] = ACTIONS(1515), - [anon_sym_AMP_EQ] = ACTIONS(1515), - [anon_sym_PIPE_EQ] = ACTIONS(1515), - [anon_sym_LT_LT_EQ] = ACTIONS(1515), - [anon_sym_GT_GT_EQ] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_GT_EQ] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_gen] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_impl] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_mod] = ACTIONS(1517), - [anon_sym_pub] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_trait] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_unsafe] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_move] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym__raw_string_literal_start] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [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_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_EQ] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1523), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), }, [STATE(417)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3163), - [sym_variadic_parameter] = STATE(3163), - [sym_parameter] = STATE(3163), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(418)] = { - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), [ts_builtin_sym_end] = ACTIONS(1525), [sym_identifier] = ACTIONS(1527), [anon_sym_SEMI] = ACTIONS(1525), @@ -64616,350 +64511,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1525), [sym_float_literal] = ACTIONS(1525), }, + [STATE(418)] = { + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_macro_rules_BANG] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_yield] = ACTIONS(1037), + [anon_sym_move] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym_metavariable] = ACTIONS(1039), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, [STATE(419)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2908), - [sym_variadic_parameter] = STATE(2908), - [sym_parameter] = STATE(2908), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2666), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [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_LBRACK] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1531), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PERCENT_EQ] = ACTIONS(1529), + [anon_sym_CARET_EQ] = ACTIONS(1529), + [anon_sym_AMP_EQ] = ACTIONS(1529), + [anon_sym_PIPE_EQ] = ACTIONS(1529), + [anon_sym_LT_LT_EQ] = ACTIONS(1529), + [anon_sym_GT_GT_EQ] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_EQ_EQ] = ACTIONS(1529), + [anon_sym_BANG_EQ] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_GT_EQ] = ACTIONS(1529), + [anon_sym_LT_EQ] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1531), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_move] = ACTIONS(1531), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym__raw_string_literal_start] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), }, [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [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_LBRACK] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PERCENT_EQ] = ACTIONS(1533), + [anon_sym_CARET_EQ] = ACTIONS(1533), + [anon_sym_AMP_EQ] = ACTIONS(1533), + [anon_sym_PIPE_EQ] = ACTIONS(1533), + [anon_sym_LT_LT_EQ] = ACTIONS(1533), + [anon_sym_GT_GT_EQ] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_as] = 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_gen] = 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_extern] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_move] = ACTIONS(1535), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym__raw_string_literal_start] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), }, [STATE(421)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_self_parameter] = STATE(3133), + [sym_variadic_parameter] = STATE(3133), + [sym_parameter] = STATE(3133), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3069), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(422)] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), [ts_builtin_sym_end] = ACTIONS(1539), [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1475), [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1475), [anon_sym_u8] = ACTIONS(1541), [anon_sym_i8] = ACTIONS(1541), [anon_sym_u16] = ACTIONS(1541), @@ -64977,42 +64982,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1541), [anon_sym_str] = ACTIONS(1541), [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), [anon_sym_COLON_COLON] = ACTIONS(1539), [anon_sym_POUND] = ACTIONS(1539), [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_as] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1473), [anon_sym_async] = ACTIONS(1541), [anon_sym_break] = ACTIONS(1541), [anon_sym_const] = ACTIONS(1541), @@ -65059,164 +65064,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(423)] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_macro_rules_BANG] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_impl] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_loop] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_mod] = ACTIONS(1541), + [anon_sym_pub] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_trait] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_unsafe] = ACTIONS(1541), + [anon_sym_use] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3049), + [sym_bracketed_type] = STATE(3665), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2511), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2747), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1217), [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -65234,520 +65239,732 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COMMA] = ACTIONS(1553), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1561), [sym_super] = ACTIONS(1561), [sym_crate] = ACTIONS(1561), [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2185), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2185), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(427)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2210), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1573), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(428)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2185), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1281), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2185), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(430)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2210), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(431)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3665), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2511), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2185), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -65765,307 +65982,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1561), [sym_super] = ACTIONS(1561), [sym_crate] = ACTIONS(1561), [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(430)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [STATE(432)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3656), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3312), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2555), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2210), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1583), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1313), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(431)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(433)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3664), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2516), + [sym_scoped_identifier] = STATE(2187), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2210), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1281), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1283), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(432)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(434)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3665), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2511), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(2189), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2210), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -66083,255 +66300,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1251), [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1561), [sym_super] = ACTIONS(1561), [sym_crate] = ACTIONS(1561), [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(433)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(434)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(435)] = { [sym_line_comment] = STATE(435), @@ -66531,31 +66536,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1587), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), [sym_identifier] = ACTIONS(1589), @@ -66587,7 +66592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1591), [anon_sym__] = ACTIONS(1589), [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COLON_COLON] = ACTIONS(1591), [anon_sym_DASH_GT] = ACTIONS(1591), [anon_sym_SQUOTE] = ACTIONS(1589), @@ -66606,8 +66611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1589), [anon_sym_unsafe] = ACTIONS(1589), [anon_sym_while] = ACTIONS(1589), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), [anon_sym_yield] = ACTIONS(1589), [anon_sym_move] = ACTIONS(1589), [anon_sym_try] = ACTIONS(1589), @@ -66626,31 +66631,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1591), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2202), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), [sym_identifier] = ACTIONS(1593), @@ -66682,7 +66687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1595), [anon_sym__] = ACTIONS(1593), [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COLON_COLON] = ACTIONS(1595), [anon_sym_DASH_GT] = ACTIONS(1595), [anon_sym_SQUOTE] = ACTIONS(1593), @@ -66701,8 +66706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1593), [anon_sym_unsafe] = ACTIONS(1593), [anon_sym_while] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), [anon_sym_yield] = ACTIONS(1593), [anon_sym_move] = ACTIONS(1593), [anon_sym_try] = ACTIONS(1593), @@ -66721,39 +66726,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1595), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -66777,72 +66782,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1613), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -66866,72 +66871,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -66955,72 +66960,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1637), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67044,72 +67049,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1639), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67133,72 +67138,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1641), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67222,72 +67227,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1643), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67311,72 +67316,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1645), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67400,72 +67405,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1647), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67489,72 +67494,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1649), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67578,72 +67583,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1651), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67667,72 +67672,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1653), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67756,72 +67761,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1655), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2392), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2520), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2520), - [sym__literal] = STATE(2520), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2496), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2689), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2689), + [sym__literal] = STATE(2689), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67845,71 +67850,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2474), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2474), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2516), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2516), - [sym__literal] = STATE(2516), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2401), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2401), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2556), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2556), + [sym__literal] = STATE(2556), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67933,71 +67938,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2431), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2498), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2498), + [sym__literal] = STATE(2498), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -68021,71 +68026,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2451), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2451), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2544), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2544), - [sym__literal] = STATE(2544), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2464), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2564), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2564), + [sym__literal] = STATE(2564), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -68109,71 +68114,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2380), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2549), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2549), - [sym__literal] = STATE(2549), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2436), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_type_binding] = STATE(2507), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_label] = STATE(3736), + [sym_block] = STATE(2507), + [sym__literal] = STATE(2507), + [sym_string_literal] = STATE(3110), + [sym_raw_string_literal] = STATE(3110), + [sym_boolean_literal] = STATE(3110), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -68197,72 +68202,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1275), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1629), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3737), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3610), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(720), + [aux_sym_match_block_repeat1] = STATE(462), + [aux_sym_match_arm_repeat1] = STATE(620), [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_LBRACK] = ACTIONS(1661), @@ -68314,125 +68319,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1691), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3459), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_else_clause] = STATE(474), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), + [anon_sym_PERCENT_EQ] = ACTIONS(1413), + [anon_sym_CARET_EQ] = ACTIONS(1413), + [anon_sym_AMP_EQ] = ACTIONS(1413), + [anon_sym_PIPE_EQ] = ACTIONS(1413), + [anon_sym_LT_LT_EQ] = ACTIONS(1413), + [anon_sym_GT_GT_EQ] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym__] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_gen] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_ref] = ACTIONS(1415), + [anon_sym_else] = ACTIONS(1703), + [sym_mutable_specifier] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3528), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3466), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_match_block_repeat1] = STATE(462), - [aux_sym_match_arm_repeat1] = STATE(720), + [aux_sym_match_block_repeat1] = STATE(463), + [aux_sym_match_arm_repeat1] = STATE(620), [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_LBRACK] = ACTIONS(1661), @@ -68484,129 +68489,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1691), }, [STATE(459)] = { - [sym_else_clause] = STATE(479), + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3471), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [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), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym__] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COMMA] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1707), - [sym_mutable_specifier] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), - }, - [STATE(460)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3527), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(720), + [aux_sym_match_arm_repeat1] = STATE(620), [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1707), [anon_sym_u8] = ACTIONS(1665), [anon_sym_i8] = ACTIONS(1665), [anon_sym_u16] = ACTIONS(1665), @@ -68653,128 +68573,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1701), [sym_float_literal] = ACTIONS(1691), }, - [STATE(461)] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym__] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_ref] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - }, - [STATE(462)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3777), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), + [STATE(460)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3712), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [aux_sym_match_block_repeat1] = STATE(469), + [aux_sym_match_arm_repeat1] = STATE(620), [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1709), [anon_sym_u8] = ACTIONS(1665), [anon_sym_i8] = ACTIONS(1665), [anon_sym_u16] = ACTIONS(1665), @@ -68821,93 +68658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1701), [sym_float_literal] = ACTIONS(1691), }, - [STATE(463)] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym__] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_ref] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(464)] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), + [STATE(461)] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), [sym_identifier] = ACTIONS(1425), [anon_sym_LPAREN] = ACTIONS(1423), [anon_sym_LBRACK] = ACTIONS(1423), @@ -68989,9 +68742,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1423), [sym_float_literal] = ACTIONS(1423), }, - [STATE(465)] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), + [STATE(462)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3491), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [aux_sym_match_block_repeat1] = STATE(479), + [aux_sym_match_arm_repeat1] = STATE(620), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), + }, + [STATE(463)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3577), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [aux_sym_match_block_repeat1] = STATE(479), + [aux_sym_match_arm_repeat1] = STATE(620), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), + }, + [STATE(464)] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), [sym_identifier] = ACTIONS(1429), [anon_sym_LPAREN] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1427), @@ -69073,93 +68994,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1427), [sym_float_literal] = ACTIONS(1427), }, - [STATE(466)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3580), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(467)] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), + [STATE(465)] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(1437), [anon_sym_LPAREN] = ACTIONS(1435), [anon_sym_LBRACK] = ACTIONS(1435), @@ -69241,41 +69078,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1435), [sym_float_literal] = ACTIONS(1435), }, - [STATE(468)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3499), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), + [STATE(466)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3501), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [aux_sym_match_block_repeat1] = STATE(479), + [aux_sym_match_arm_repeat1] = STATE(620), [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_LBRACK] = ACTIONS(1661), @@ -69325,41 +69162,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1701), [sym_float_literal] = ACTIONS(1691), }, + [STATE(467)] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_PIPE_PIPE] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1421), + [anon_sym_GT_GT] = ACTIONS(1421), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_CARET_EQ] = ACTIONS(1419), + [anon_sym_AMP_EQ] = ACTIONS(1419), + [anon_sym_PIPE_EQ] = ACTIONS(1419), + [anon_sym_LT_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_GT_EQ] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym__] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_gen] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym__raw_string_literal_start] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), + }, + [STATE(468)] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_ref] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), + }, [STATE(469)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3469), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_last_match_arm] = STATE(3737), + [sym_match_pattern] = STATE(3493), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), + [aux_sym_match_block_repeat1] = STATE(479), + [aux_sym_match_arm_repeat1] = STATE(620), [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1659), [anon_sym_LBRACK] = ACTIONS(1661), @@ -69412,338 +69417,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(470)] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1537), - [sym_mutable_specifier] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1531), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PERCENT_EQ] = ACTIONS(1529), + [anon_sym_CARET_EQ] = ACTIONS(1529), + [anon_sym_AMP_EQ] = ACTIONS(1529), + [anon_sym_PIPE_EQ] = ACTIONS(1529), + [anon_sym_LT_LT_EQ] = ACTIONS(1529), + [anon_sym_GT_GT_EQ] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_EQ_EQ] = ACTIONS(1529), + [anon_sym_BANG_EQ] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_GT_EQ] = ACTIONS(1529), + [anon_sym_LT_EQ] = ACTIONS(1529), + [anon_sym__] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_gen] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1531), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym__raw_string_literal_start] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), }, [STATE(471)] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [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_DASH] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1711), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_gen] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1711), - [sym_mutable_specifier] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym__] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_gen] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_ref] = ACTIONS(1495), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym__raw_string_literal_start] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), }, [STATE(472)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_match_pattern] = STATE(3570), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(627), - [sym_identifier] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1760), - [sym_mutable_specifier] = ACTIONS(1763), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1769), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_crate] = ACTIONS(1775), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PERCENT_EQ] = ACTIONS(1533), + [anon_sym_CARET_EQ] = ACTIONS(1533), + [anon_sym_AMP_EQ] = ACTIONS(1533), + [anon_sym_PIPE_EQ] = ACTIONS(1533), + [anon_sym_LT_LT_EQ] = ACTIONS(1533), + [anon_sym_GT_GT_EQ] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym__] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_gen] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_ref] = ACTIONS(1535), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym__raw_string_literal_start] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), }, [STATE(473)] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [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_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_gen] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_ref] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym__] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_ref] = ACTIONS(1507), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(474)] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), + [sym_identifier] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_EQ] = ACTIONS(1521), + [anon_sym__] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_ref] = ACTIONS(1523), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), + }, + [STATE(475)] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), [sym_identifier] = ACTIONS(1463), [anon_sym_LPAREN] = ACTIONS(1461), [anon_sym_LBRACK] = ACTIONS(1461), @@ -69824,258 +69912,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1461), [sym_float_literal] = ACTIONS(1461), }, - [STATE(475)] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - }, [STATE(476)] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym__] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_ref] = ACTIONS(1455), - [sym_mutable_specifier] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym__] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_ref] = ACTIONS(1447), + [sym_mutable_specifier] = 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), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), }, [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COMMA] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_ref] = ACTIONS(1533), - [sym_mutable_specifier] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1475), + [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_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1711), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_gen] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_ref] = ACTIONS(1711), + [sym_mutable_specifier] = ACTIONS(1711), + [sym_integer_literal] = ACTIONS(1713), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1713), + [sym_float_literal] = ACTIONS(1713), }, [STATE(478)] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_ref] = ACTIONS(1499), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), + }, + [STATE(479)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_arm] = STATE(1258), + [sym_match_pattern] = STATE(3540), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [aux_sym_match_block_repeat1] = STATE(479), + [aux_sym_match_arm_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_u8] = ACTIONS(1724), + [anon_sym_i8] = ACTIONS(1724), + [anon_sym_u16] = ACTIONS(1724), + [anon_sym_i16] = ACTIONS(1724), + [anon_sym_u32] = ACTIONS(1724), + [anon_sym_i32] = ACTIONS(1724), + [anon_sym_u64] = ACTIONS(1724), + [anon_sym_i64] = ACTIONS(1724), + [anon_sym_u128] = ACTIONS(1724), + [anon_sym_i128] = ACTIONS(1724), + [anon_sym_isize] = ACTIONS(1724), + [anon_sym_usize] = ACTIONS(1724), + [anon_sym_f32] = ACTIONS(1724), + [anon_sym_f64] = ACTIONS(1724), + [anon_sym_bool] = ACTIONS(1724), + [anon_sym_str] = ACTIONS(1724), + [anon_sym_char] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym__] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1751), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_gen] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1760), + [sym_mutable_specifier] = ACTIONS(1763), + [sym_integer_literal] = ACTIONS(1766), + [aux_sym_string_literal_token1] = ACTIONS(1769), + [sym_char_literal] = ACTIONS(1766), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_crate] = ACTIONS(1775), + [sym_metavariable] = ACTIONS(1778), + [sym__raw_string_literal_start] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1766), + }, + [STATE(480)] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym__] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1511), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), + }, + [STATE(481)] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_identifier] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_ref] = ACTIONS(1451), + [sym_mutable_specifier] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(482)] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), [sym_identifier] = ACTIONS(1467), [anon_sym_LPAREN] = ACTIONS(1465), [anon_sym_LBRACK] = ACTIONS(1465), @@ -70156,590 +70493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1465), [sym_float_literal] = ACTIONS(1465), }, - [STATE(479)] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym__] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COMMA] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_ref] = ACTIONS(1513), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), - }, - [STATE(480)] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_PERCENT] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1517), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PERCENT_EQ] = ACTIONS(1515), - [anon_sym_CARET_EQ] = ACTIONS(1515), - [anon_sym_AMP_EQ] = ACTIONS(1515), - [anon_sym_PIPE_EQ] = ACTIONS(1515), - [anon_sym_LT_LT_EQ] = ACTIONS(1515), - [anon_sym_GT_GT_EQ] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_GT_EQ] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1515), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_COMMA] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_gen] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_ref] = ACTIONS(1517), - [sym_mutable_specifier] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym__raw_string_literal_start] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), - }, - [STATE(481)] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym__] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1497), - [sym_mutable_specifier] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), - }, - [STATE(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym__] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1509), - [sym_mutable_specifier] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), - }, [STATE(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym__] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_ref] = ACTIONS(1527), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), - }, - [STATE(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1505), - [sym_mutable_specifier] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), - }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_gen] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_ref] = ACTIONS(1493), - [sym_mutable_specifier] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym__raw_string_literal_start] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), - }, - [STATE(486)] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), [sym_identifier] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1485), [anon_sym_LBRACK] = ACTIONS(1485), @@ -70820,279 +70576,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1485), [sym_float_literal] = ACTIONS(1485), }, - [STATE(487)] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1443), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_ref] = ACTIONS(1443), - [sym_mutable_specifier] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), - }, - [STATE(488)] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym__] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_ref] = ACTIONS(1501), - [sym_mutable_specifier] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), - }, - [STATE(489)] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_CARET_EQ] = ACTIONS(1473), - [anon_sym_AMP_EQ] = ACTIONS(1473), - [anon_sym_PIPE_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_GT_EQ] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym__] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_ref] = ACTIONS(1475), - [sym_mutable_specifier] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), - }, - [STATE(490)] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), + [STATE(484)] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1475), + [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_DASH] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_gen] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_ref] = ACTIONS(1784), + [sym_mutable_specifier] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1786), + [sym__raw_string_literal_start] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), + }, + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), [anon_sym_bool] = ACTIONS(1459), [anon_sym_str] = ACTIONS(1459), [anon_sym_char] = ACTIONS(1459), @@ -71152,117 +70742,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1457), [sym_float_literal] = ACTIONS(1457), }, + [STATE(486)] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [sym_identifier] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym__] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_ref] = ACTIONS(1455), + [sym_mutable_specifier] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [STATE(487)] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym__] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1503), + [sym_mutable_specifier] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), + }, + [STATE(488)] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_ref] = ACTIONS(1491), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), + }, + [STATE(489)] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [sym_identifier] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym__] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_ref] = ACTIONS(1515), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), + }, + [STATE(490)] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym_identifier] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1477), + [anon_sym_DASH_EQ] = ACTIONS(1477), + [anon_sym_STAR_EQ] = ACTIONS(1477), + [anon_sym_SLASH_EQ] = ACTIONS(1477), + [anon_sym_PERCENT_EQ] = ACTIONS(1477), + [anon_sym_CARET_EQ] = ACTIONS(1477), + [anon_sym_AMP_EQ] = ACTIONS(1477), + [anon_sym_PIPE_EQ] = ACTIONS(1477), + [anon_sym_LT_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym__] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_ref] = ACTIONS(1479), + [sym_mutable_specifier] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym__raw_string_literal_start] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), + }, [STATE(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym__] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_ref] = ACTIONS(1541), - [sym_mutable_specifier] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), + [sym_identifier] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1527), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_EQ_EQ] = ACTIONS(1525), + [anon_sym_BANG_EQ] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym__] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_gen] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_ref] = ACTIONS(1527), + [sym_mutable_specifier] = 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), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym__raw_string_literal_start] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), }, [STATE(492)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3068), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2692), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), [sym_identifier] = ACTIONS(1788), @@ -71286,70 +71291,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3020), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2624), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(2884), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2847), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1812), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -71368,36 +71373,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(494)] = { [sym_line_comment] = STATE(494), @@ -76098,2633 +76103,2771 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2042), }, [STATE(552)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3391), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_gen] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_gen] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_macro_rules_BANG] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_gen] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_yield] = ACTIONS(2050), + [anon_sym_move] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2048), + [aux_sym_string_literal_token1] = ACTIONS(2048), + [sym_char_literal] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym__raw_string_literal_start] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_gen] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_macro_rules_BANG] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_COLON_COLON] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_gen] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_move] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [sym_integer_literal] = ACTIONS(2052), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym__raw_string_literal_start] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_gen] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_macro_rules_BANG] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2056), + [anon_sym_COLON_COLON] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_gen] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_yield] = ACTIONS(2058), + [anon_sym_move] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [sym_integer_literal] = ACTIONS(2056), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym__raw_string_literal_start] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_gen] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_macro_rules_BANG] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_u8] = ACTIONS(2062), + [anon_sym_i8] = ACTIONS(2062), + [anon_sym_u16] = ACTIONS(2062), + [anon_sym_i16] = ACTIONS(2062), + [anon_sym_u32] = ACTIONS(2062), + [anon_sym_i32] = ACTIONS(2062), + [anon_sym_u64] = ACTIONS(2062), + [anon_sym_i64] = ACTIONS(2062), + [anon_sym_u128] = ACTIONS(2062), + [anon_sym_i128] = ACTIONS(2062), + [anon_sym_isize] = ACTIONS(2062), + [anon_sym_usize] = ACTIONS(2062), + [anon_sym_f32] = ACTIONS(2062), + [anon_sym_f64] = ACTIONS(2062), + [anon_sym_bool] = ACTIONS(2062), + [anon_sym_str] = ACTIONS(2062), + [anon_sym_char] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_fn] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_gen] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_impl] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_mod] = ACTIONS(2062), + [anon_sym_pub] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_trait] = ACTIONS(2062), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_move] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [sym_integer_literal] = ACTIONS(2060), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym__raw_string_literal_start] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_gen] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_macro_rules_BANG] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_gen] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_yield] = ACTIONS(2066), + [anon_sym_move] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2064), + [aux_sym_string_literal_token1] = ACTIONS(2064), + [sym_char_literal] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym__raw_string_literal_start] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_gen] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_macro_rules_BANG] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_u8] = ACTIONS(2070), + [anon_sym_i8] = ACTIONS(2070), + [anon_sym_u16] = ACTIONS(2070), + [anon_sym_i16] = ACTIONS(2070), + [anon_sym_u32] = ACTIONS(2070), + [anon_sym_i32] = ACTIONS(2070), + [anon_sym_u64] = ACTIONS(2070), + [anon_sym_i64] = ACTIONS(2070), + [anon_sym_u128] = ACTIONS(2070), + [anon_sym_i128] = ACTIONS(2070), + [anon_sym_isize] = ACTIONS(2070), + [anon_sym_usize] = ACTIONS(2070), + [anon_sym_f32] = ACTIONS(2070), + [anon_sym_f64] = ACTIONS(2070), + [anon_sym_bool] = ACTIONS(2070), + [anon_sym_str] = ACTIONS(2070), + [anon_sym_char] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_COLON_COLON] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_async] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_fn] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_gen] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_impl] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_mod] = ACTIONS(2070), + [anon_sym_pub] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_struct] = ACTIONS(2070), + [anon_sym_trait] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_unsafe] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_yield] = ACTIONS(2070), + [anon_sym_move] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [sym_integer_literal] = ACTIONS(2068), + [aux_sym_string_literal_token1] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym__raw_string_literal_start] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_macro_rules_BANG] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_u8] = ACTIONS(2076), - [anon_sym_i8] = ACTIONS(2076), - [anon_sym_u16] = ACTIONS(2076), - [anon_sym_i16] = ACTIONS(2076), - [anon_sym_u32] = ACTIONS(2076), - [anon_sym_i32] = ACTIONS(2076), - [anon_sym_u64] = ACTIONS(2076), - [anon_sym_i64] = ACTIONS(2076), - [anon_sym_u128] = ACTIONS(2076), - [anon_sym_i128] = ACTIONS(2076), - [anon_sym_isize] = ACTIONS(2076), - [anon_sym_usize] = ACTIONS(2076), - [anon_sym_f32] = ACTIONS(2076), - [anon_sym_f64] = ACTIONS(2076), - [anon_sym_bool] = ACTIONS(2076), - [anon_sym_str] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_gen] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2076), - [anon_sym_let] = ACTIONS(2076), - [anon_sym_loop] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_mod] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_trait] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_use] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [aux_sym_string_literal_token1] = ACTIONS(2074), - [sym_char_literal] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_macro_rules_BANG] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_u8] = ACTIONS(2074), + [anon_sym_i8] = ACTIONS(2074), + [anon_sym_u16] = ACTIONS(2074), + [anon_sym_i16] = ACTIONS(2074), + [anon_sym_u32] = ACTIONS(2074), + [anon_sym_i32] = ACTIONS(2074), + [anon_sym_u64] = ACTIONS(2074), + [anon_sym_i64] = ACTIONS(2074), + [anon_sym_u128] = ACTIONS(2074), + [anon_sym_i128] = ACTIONS(2074), + [anon_sym_isize] = ACTIONS(2074), + [anon_sym_usize] = ACTIONS(2074), + [anon_sym_f32] = ACTIONS(2074), + [anon_sym_f64] = ACTIONS(2074), + [anon_sym_bool] = ACTIONS(2074), + [anon_sym_str] = ACTIONS(2074), + [anon_sym_char] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_COLON_COLON] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_fn] = ACTIONS(2074), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_gen] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_impl] = ACTIONS(2074), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_loop] = ACTIONS(2074), + [anon_sym_match] = ACTIONS(2074), + [anon_sym_mod] = ACTIONS(2074), + [anon_sym_pub] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_struct] = ACTIONS(2074), + [anon_sym_trait] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_union] = ACTIONS(2074), + [anon_sym_unsafe] = ACTIONS(2074), + [anon_sym_use] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_move] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2074), + [sym_integer_literal] = ACTIONS(2072), + [aux_sym_string_literal_token1] = ACTIONS(2072), + [sym_char_literal] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_crate] = ACTIONS(2074), + [sym_metavariable] = ACTIONS(2072), + [sym__raw_string_literal_start] = ACTIONS(2072), + [sym_float_literal] = ACTIONS(2072), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_macro_rules_BANG] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_u8] = ACTIONS(2080), - [anon_sym_i8] = ACTIONS(2080), - [anon_sym_u16] = ACTIONS(2080), - [anon_sym_i16] = ACTIONS(2080), - [anon_sym_u32] = ACTIONS(2080), - [anon_sym_i32] = ACTIONS(2080), - [anon_sym_u64] = ACTIONS(2080), - [anon_sym_i64] = ACTIONS(2080), - [anon_sym_u128] = ACTIONS(2080), - [anon_sym_i128] = ACTIONS(2080), - [anon_sym_isize] = ACTIONS(2080), - [anon_sym_usize] = ACTIONS(2080), - [anon_sym_f32] = ACTIONS(2080), - [anon_sym_f64] = ACTIONS(2080), - [anon_sym_bool] = ACTIONS(2080), - [anon_sym_str] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_fn] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_gen] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_impl] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_loop] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_mod] = ACTIONS(2080), - [anon_sym_pub] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_trait] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(2080), - [anon_sym_use] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [aux_sym_string_literal_token1] = ACTIONS(2078), - [sym_char_literal] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_macro_rules_BANG] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_u8] = ACTIONS(2078), + [anon_sym_i8] = ACTIONS(2078), + [anon_sym_u16] = ACTIONS(2078), + [anon_sym_i16] = ACTIONS(2078), + [anon_sym_u32] = ACTIONS(2078), + [anon_sym_i32] = ACTIONS(2078), + [anon_sym_u64] = ACTIONS(2078), + [anon_sym_i64] = ACTIONS(2078), + [anon_sym_u128] = ACTIONS(2078), + [anon_sym_i128] = ACTIONS(2078), + [anon_sym_isize] = ACTIONS(2078), + [anon_sym_usize] = ACTIONS(2078), + [anon_sym_f32] = ACTIONS(2078), + [anon_sym_f64] = ACTIONS(2078), + [anon_sym_bool] = ACTIONS(2078), + [anon_sym_str] = ACTIONS(2078), + [anon_sym_char] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_fn] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_gen] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_impl] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_mod] = ACTIONS(2078), + [anon_sym_pub] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_struct] = ACTIONS(2078), + [anon_sym_trait] = ACTIONS(2078), + [anon_sym_type] = ACTIONS(2078), + [anon_sym_union] = ACTIONS(2078), + [anon_sym_unsafe] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_yield] = ACTIONS(2078), + [anon_sym_move] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [sym_integer_literal] = ACTIONS(2076), + [aux_sym_string_literal_token1] = ACTIONS(2076), + [sym_char_literal] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_crate] = ACTIONS(2078), + [sym_metavariable] = ACTIONS(2076), + [sym__raw_string_literal_start] = ACTIONS(2076), + [sym_float_literal] = ACTIONS(2076), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_macro_rules_BANG] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_gen] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [aux_sym_string_literal_token1] = ACTIONS(2082), - [sym_char_literal] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_macro_rules_BANG] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2082), + [anon_sym_i8] = ACTIONS(2082), + [anon_sym_u16] = ACTIONS(2082), + [anon_sym_i16] = ACTIONS(2082), + [anon_sym_u32] = ACTIONS(2082), + [anon_sym_i32] = ACTIONS(2082), + [anon_sym_u64] = ACTIONS(2082), + [anon_sym_i64] = ACTIONS(2082), + [anon_sym_u128] = ACTIONS(2082), + [anon_sym_i128] = ACTIONS(2082), + [anon_sym_isize] = ACTIONS(2082), + [anon_sym_usize] = ACTIONS(2082), + [anon_sym_f32] = ACTIONS(2082), + [anon_sym_f64] = ACTIONS(2082), + [anon_sym_bool] = ACTIONS(2082), + [anon_sym_str] = ACTIONS(2082), + [anon_sym_char] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_default] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_fn] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_gen] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_impl] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_mod] = ACTIONS(2082), + [anon_sym_pub] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_struct] = ACTIONS(2082), + [anon_sym_trait] = ACTIONS(2082), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_union] = ACTIONS(2082), + [anon_sym_unsafe] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2082), + [anon_sym_move] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [sym_integer_literal] = ACTIONS(2080), + [aux_sym_string_literal_token1] = ACTIONS(2080), + [sym_char_literal] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), + [sym_metavariable] = ACTIONS(2080), + [sym__raw_string_literal_start] = ACTIONS(2080), + [sym_float_literal] = ACTIONS(2080), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_macro_rules_BANG] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2088), - [anon_sym_i8] = ACTIONS(2088), - [anon_sym_u16] = ACTIONS(2088), - [anon_sym_i16] = ACTIONS(2088), - [anon_sym_u32] = ACTIONS(2088), - [anon_sym_i32] = ACTIONS(2088), - [anon_sym_u64] = ACTIONS(2088), - [anon_sym_i64] = ACTIONS(2088), - [anon_sym_u128] = ACTIONS(2088), - [anon_sym_i128] = ACTIONS(2088), - [anon_sym_isize] = ACTIONS(2088), - [anon_sym_usize] = ACTIONS(2088), - [anon_sym_f32] = ACTIONS(2088), - [anon_sym_f64] = ACTIONS(2088), - [anon_sym_bool] = ACTIONS(2088), - [anon_sym_str] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_fn] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_gen] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_impl] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_mod] = ACTIONS(2088), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_trait] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_unsafe] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_macro_rules_BANG] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_u8] = ACTIONS(2086), + [anon_sym_i8] = ACTIONS(2086), + [anon_sym_u16] = ACTIONS(2086), + [anon_sym_i16] = ACTIONS(2086), + [anon_sym_u32] = ACTIONS(2086), + [anon_sym_i32] = ACTIONS(2086), + [anon_sym_u64] = ACTIONS(2086), + [anon_sym_i64] = ACTIONS(2086), + [anon_sym_u128] = ACTIONS(2086), + [anon_sym_i128] = ACTIONS(2086), + [anon_sym_isize] = ACTIONS(2086), + [anon_sym_usize] = ACTIONS(2086), + [anon_sym_f32] = ACTIONS(2086), + [anon_sym_f64] = ACTIONS(2086), + [anon_sym_bool] = ACTIONS(2086), + [anon_sym_str] = ACTIONS(2086), + [anon_sym_char] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2084), + [anon_sym_COLON_COLON] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_fn] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_gen] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_impl] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_mod] = ACTIONS(2086), + [anon_sym_pub] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(2086), + [anon_sym_trait] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2086), + [anon_sym_union] = ACTIONS(2086), + [anon_sym_unsafe] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2086), + [anon_sym_move] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [sym_integer_literal] = ACTIONS(2084), + [aux_sym_string_literal_token1] = ACTIONS(2084), + [sym_char_literal] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_crate] = ACTIONS(2086), + [sym_metavariable] = ACTIONS(2084), + [sym__raw_string_literal_start] = ACTIONS(2084), + [sym_float_literal] = ACTIONS(2084), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_u8] = ACTIONS(2092), - [anon_sym_i8] = ACTIONS(2092), - [anon_sym_u16] = ACTIONS(2092), - [anon_sym_i16] = ACTIONS(2092), - [anon_sym_u32] = ACTIONS(2092), - [anon_sym_i32] = ACTIONS(2092), - [anon_sym_u64] = ACTIONS(2092), - [anon_sym_i64] = ACTIONS(2092), - [anon_sym_u128] = ACTIONS(2092), - [anon_sym_i128] = ACTIONS(2092), - [anon_sym_isize] = ACTIONS(2092), - [anon_sym_usize] = ACTIONS(2092), - [anon_sym_f32] = ACTIONS(2092), - [anon_sym_f64] = ACTIONS(2092), - [anon_sym_bool] = ACTIONS(2092), - [anon_sym_str] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_gen] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_impl] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_loop] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_mod] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_trait] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_use] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [aux_sym_string_literal_token1] = ACTIONS(2090), - [sym_char_literal] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_macro_rules_BANG] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_u8] = ACTIONS(2090), + [anon_sym_i8] = ACTIONS(2090), + [anon_sym_u16] = ACTIONS(2090), + [anon_sym_i16] = ACTIONS(2090), + [anon_sym_u32] = ACTIONS(2090), + [anon_sym_i32] = ACTIONS(2090), + [anon_sym_u64] = ACTIONS(2090), + [anon_sym_i64] = ACTIONS(2090), + [anon_sym_u128] = ACTIONS(2090), + [anon_sym_i128] = ACTIONS(2090), + [anon_sym_isize] = ACTIONS(2090), + [anon_sym_usize] = ACTIONS(2090), + [anon_sym_f32] = ACTIONS(2090), + [anon_sym_f64] = ACTIONS(2090), + [anon_sym_bool] = ACTIONS(2090), + [anon_sym_str] = ACTIONS(2090), + [anon_sym_char] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2088), + [anon_sym_COLON_COLON] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_gen] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_impl] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_mod] = ACTIONS(2090), + [anon_sym_pub] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_trait] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2090), + [anon_sym_unsafe] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_move] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2088), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_crate] = ACTIONS(2090), + [sym_metavariable] = ACTIONS(2088), + [sym__raw_string_literal_start] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_macro_rules_BANG] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_fn] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_gen] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_impl] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_mod] = ACTIONS(2096), - [anon_sym_pub] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_trait] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_unsafe] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [aux_sym_string_literal_token1] = ACTIONS(2094), - [sym_char_literal] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_u8] = ACTIONS(2094), + [anon_sym_i8] = ACTIONS(2094), + [anon_sym_u16] = ACTIONS(2094), + [anon_sym_i16] = ACTIONS(2094), + [anon_sym_u32] = ACTIONS(2094), + [anon_sym_i32] = ACTIONS(2094), + [anon_sym_u64] = ACTIONS(2094), + [anon_sym_i64] = ACTIONS(2094), + [anon_sym_u128] = ACTIONS(2094), + [anon_sym_i128] = ACTIONS(2094), + [anon_sym_isize] = ACTIONS(2094), + [anon_sym_usize] = ACTIONS(2094), + [anon_sym_f32] = ACTIONS(2094), + [anon_sym_f64] = ACTIONS(2094), + [anon_sym_bool] = ACTIONS(2094), + [anon_sym_str] = ACTIONS(2094), + [anon_sym_char] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2092), + [anon_sym_COLON_COLON] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_async] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_fn] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_gen] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_impl] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_mod] = ACTIONS(2094), + [anon_sym_pub] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(2094), + [anon_sym_trait] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_unsafe] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_yield] = ACTIONS(2094), + [anon_sym_move] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [sym_integer_literal] = ACTIONS(2092), + [aux_sym_string_literal_token1] = ACTIONS(2092), + [sym_char_literal] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2094), + [sym_super] = ACTIONS(2094), + [sym_crate] = ACTIONS(2094), + [sym_metavariable] = ACTIONS(2092), + [sym__raw_string_literal_start] = ACTIONS(2092), + [sym_float_literal] = ACTIONS(2092), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_macro_rules_BANG] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2100), - [anon_sym_i8] = ACTIONS(2100), - [anon_sym_u16] = ACTIONS(2100), - [anon_sym_i16] = ACTIONS(2100), - [anon_sym_u32] = ACTIONS(2100), - [anon_sym_i32] = ACTIONS(2100), - [anon_sym_u64] = ACTIONS(2100), - [anon_sym_i64] = ACTIONS(2100), - [anon_sym_u128] = ACTIONS(2100), - [anon_sym_i128] = ACTIONS(2100), - [anon_sym_isize] = ACTIONS(2100), - [anon_sym_usize] = ACTIONS(2100), - [anon_sym_f32] = ACTIONS(2100), - [anon_sym_f64] = ACTIONS(2100), - [anon_sym_bool] = ACTIONS(2100), - [anon_sym_str] = ACTIONS(2100), - [anon_sym_char] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), - [anon_sym_fn] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_gen] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_impl] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_loop] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_mod] = ACTIONS(2100), - [anon_sym_pub] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_struct] = ACTIONS(2100), - [anon_sym_trait] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2100), - [anon_sym_unsafe] = ACTIONS(2100), - [anon_sym_use] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [aux_sym_string_literal_token1] = ACTIONS(2098), - [sym_char_literal] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_macro_rules_BANG] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_gen] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_yield] = ACTIONS(2098), + [anon_sym_move] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2096), + [aux_sym_string_literal_token1] = ACTIONS(2096), + [sym_char_literal] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2096), + [sym__raw_string_literal_start] = ACTIONS(2096), + [sym_float_literal] = ACTIONS(2096), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_macro_rules_BANG] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2104), - [anon_sym_i8] = ACTIONS(2104), - [anon_sym_u16] = ACTIONS(2104), - [anon_sym_i16] = ACTIONS(2104), - [anon_sym_u32] = ACTIONS(2104), - [anon_sym_i32] = ACTIONS(2104), - [anon_sym_u64] = ACTIONS(2104), - [anon_sym_i64] = ACTIONS(2104), - [anon_sym_u128] = ACTIONS(2104), - [anon_sym_i128] = ACTIONS(2104), - [anon_sym_isize] = ACTIONS(2104), - [anon_sym_usize] = ACTIONS(2104), - [anon_sym_f32] = ACTIONS(2104), - [anon_sym_f64] = ACTIONS(2104), - [anon_sym_bool] = ACTIONS(2104), - [anon_sym_str] = ACTIONS(2104), - [anon_sym_char] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - [anon_sym_fn] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_gen] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_impl] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_loop] = ACTIONS(2104), - [anon_sym_match] = ACTIONS(2104), - [anon_sym_mod] = ACTIONS(2104), - [anon_sym_pub] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_struct] = ACTIONS(2104), - [anon_sym_trait] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_union] = ACTIONS(2104), - [anon_sym_unsafe] = ACTIONS(2104), - [anon_sym_use] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [sym_integer_literal] = ACTIONS(2102), - [aux_sym_string_literal_token1] = ACTIONS(2102), - [sym_char_literal] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_macro_rules_BANG] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_u8] = ACTIONS(2102), + [anon_sym_i8] = ACTIONS(2102), + [anon_sym_u16] = ACTIONS(2102), + [anon_sym_i16] = ACTIONS(2102), + [anon_sym_u32] = ACTIONS(2102), + [anon_sym_i32] = ACTIONS(2102), + [anon_sym_u64] = ACTIONS(2102), + [anon_sym_i64] = ACTIONS(2102), + [anon_sym_u128] = ACTIONS(2102), + [anon_sym_i128] = ACTIONS(2102), + [anon_sym_isize] = ACTIONS(2102), + [anon_sym_usize] = ACTIONS(2102), + [anon_sym_f32] = ACTIONS(2102), + [anon_sym_f64] = ACTIONS(2102), + [anon_sym_bool] = ACTIONS(2102), + [anon_sym_str] = ACTIONS(2102), + [anon_sym_char] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_DOT_DOT] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_gen] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_impl] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_mod] = ACTIONS(2102), + [anon_sym_pub] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_trait] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_unsafe] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_yield] = ACTIONS(2102), + [anon_sym_move] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [sym_integer_literal] = ACTIONS(2100), + [aux_sym_string_literal_token1] = ACTIONS(2100), + [sym_char_literal] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_crate] = ACTIONS(2102), + [sym_metavariable] = ACTIONS(2100), + [sym__raw_string_literal_start] = ACTIONS(2100), + [sym_float_literal] = ACTIONS(2100), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_macro_rules_BANG] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_u8] = ACTIONS(2108), - [anon_sym_i8] = ACTIONS(2108), - [anon_sym_u16] = ACTIONS(2108), - [anon_sym_i16] = ACTIONS(2108), - [anon_sym_u32] = ACTIONS(2108), - [anon_sym_i32] = ACTIONS(2108), - [anon_sym_u64] = ACTIONS(2108), - [anon_sym_i64] = ACTIONS(2108), - [anon_sym_u128] = ACTIONS(2108), - [anon_sym_i128] = ACTIONS(2108), - [anon_sym_isize] = ACTIONS(2108), - [anon_sym_usize] = ACTIONS(2108), - [anon_sym_f32] = ACTIONS(2108), - [anon_sym_f64] = ACTIONS(2108), - [anon_sym_bool] = ACTIONS(2108), - [anon_sym_str] = ACTIONS(2108), - [anon_sym_char] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_impl] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_loop] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_mod] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_trait] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_use] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2106), - [aux_sym_string_literal_token1] = ACTIONS(2106), - [sym_char_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_macro_rules_BANG] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_u8] = ACTIONS(2106), + [anon_sym_i8] = ACTIONS(2106), + [anon_sym_u16] = ACTIONS(2106), + [anon_sym_i16] = ACTIONS(2106), + [anon_sym_u32] = ACTIONS(2106), + [anon_sym_i32] = ACTIONS(2106), + [anon_sym_u64] = ACTIONS(2106), + [anon_sym_i64] = ACTIONS(2106), + [anon_sym_u128] = ACTIONS(2106), + [anon_sym_i128] = ACTIONS(2106), + [anon_sym_isize] = ACTIONS(2106), + [anon_sym_usize] = ACTIONS(2106), + [anon_sym_f32] = ACTIONS(2106), + [anon_sym_f64] = ACTIONS(2106), + [anon_sym_bool] = ACTIONS(2106), + [anon_sym_str] = ACTIONS(2106), + [anon_sym_char] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_gen] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_impl] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_mod] = ACTIONS(2106), + [anon_sym_pub] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_trait] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [anon_sym_unsafe] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_yield] = ACTIONS(2106), + [anon_sym_move] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2104), + [aux_sym_string_literal_token1] = ACTIONS(2104), + [sym_char_literal] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_crate] = ACTIONS(2106), + [sym_metavariable] = ACTIONS(2104), + [sym__raw_string_literal_start] = ACTIONS(2104), + [sym_float_literal] = ACTIONS(2104), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_macro_rules_BANG] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_u8] = ACTIONS(2112), - [anon_sym_i8] = ACTIONS(2112), - [anon_sym_u16] = ACTIONS(2112), - [anon_sym_i16] = ACTIONS(2112), - [anon_sym_u32] = ACTIONS(2112), - [anon_sym_i32] = ACTIONS(2112), - [anon_sym_u64] = ACTIONS(2112), - [anon_sym_i64] = ACTIONS(2112), - [anon_sym_u128] = ACTIONS(2112), - [anon_sym_i128] = ACTIONS(2112), - [anon_sym_isize] = ACTIONS(2112), - [anon_sym_usize] = ACTIONS(2112), - [anon_sym_f32] = ACTIONS(2112), - [anon_sym_f64] = ACTIONS(2112), - [anon_sym_bool] = ACTIONS(2112), - [anon_sym_str] = ACTIONS(2112), - [anon_sym_char] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_gen] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_loop] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_mod] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_trait] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_use] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2112), - [sym_integer_literal] = ACTIONS(2110), - [aux_sym_string_literal_token1] = ACTIONS(2110), - [sym_char_literal] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2108), + [sym_identifier] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_macro_rules_BANG] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_u8] = ACTIONS(2110), + [anon_sym_i8] = ACTIONS(2110), + [anon_sym_u16] = ACTIONS(2110), + [anon_sym_i16] = ACTIONS(2110), + [anon_sym_u32] = ACTIONS(2110), + [anon_sym_i32] = ACTIONS(2110), + [anon_sym_u64] = ACTIONS(2110), + [anon_sym_i64] = ACTIONS(2110), + [anon_sym_u128] = ACTIONS(2110), + [anon_sym_i128] = ACTIONS(2110), + [anon_sym_isize] = ACTIONS(2110), + [anon_sym_usize] = ACTIONS(2110), + [anon_sym_f32] = ACTIONS(2110), + [anon_sym_f64] = ACTIONS(2110), + [anon_sym_bool] = ACTIONS(2110), + [anon_sym_str] = ACTIONS(2110), + [anon_sym_char] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2108), + [anon_sym_DOT_DOT] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_mod] = ACTIONS(2110), + [anon_sym_pub] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_struct] = ACTIONS(2110), + [anon_sym_trait] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_union] = ACTIONS(2110), + [anon_sym_unsafe] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_move] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [sym_integer_literal] = ACTIONS(2108), + [aux_sym_string_literal_token1] = ACTIONS(2108), + [sym_char_literal] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_crate] = ACTIONS(2110), + [sym_metavariable] = ACTIONS(2108), + [sym__raw_string_literal_start] = ACTIONS(2108), + [sym_float_literal] = ACTIONS(2108), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_macro_rules_BANG] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_u8] = ACTIONS(2116), - [anon_sym_i8] = ACTIONS(2116), - [anon_sym_u16] = ACTIONS(2116), - [anon_sym_i16] = ACTIONS(2116), - [anon_sym_u32] = ACTIONS(2116), - [anon_sym_i32] = ACTIONS(2116), - [anon_sym_u64] = ACTIONS(2116), - [anon_sym_i64] = ACTIONS(2116), - [anon_sym_u128] = ACTIONS(2116), - [anon_sym_i128] = ACTIONS(2116), - [anon_sym_isize] = ACTIONS(2116), - [anon_sym_usize] = ACTIONS(2116), - [anon_sym_f32] = ACTIONS(2116), - [anon_sym_f64] = ACTIONS(2116), - [anon_sym_bool] = ACTIONS(2116), - [anon_sym_str] = ACTIONS(2116), - [anon_sym_char] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [anon_sym_fn] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_gen] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_impl] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(2116), - [anon_sym_trait] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_unsafe] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [sym_integer_literal] = ACTIONS(2114), - [aux_sym_string_literal_token1] = ACTIONS(2114), - [sym_char_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2112), + [sym_identifier] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_macro_rules_BANG] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_u8] = ACTIONS(2114), + [anon_sym_i8] = ACTIONS(2114), + [anon_sym_u16] = ACTIONS(2114), + [anon_sym_i16] = ACTIONS(2114), + [anon_sym_u32] = ACTIONS(2114), + [anon_sym_i32] = ACTIONS(2114), + [anon_sym_u64] = ACTIONS(2114), + [anon_sym_i64] = ACTIONS(2114), + [anon_sym_u128] = ACTIONS(2114), + [anon_sym_i128] = ACTIONS(2114), + [anon_sym_isize] = ACTIONS(2114), + [anon_sym_usize] = ACTIONS(2114), + [anon_sym_f32] = ACTIONS(2114), + [anon_sym_f64] = ACTIONS(2114), + [anon_sym_bool] = ACTIONS(2114), + [anon_sym_str] = ACTIONS(2114), + [anon_sym_char] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2112), + [anon_sym_DOT_DOT] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_async] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_default] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_gen] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_impl] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2114), + [anon_sym_pub] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_struct] = ACTIONS(2114), + [anon_sym_trait] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_union] = ACTIONS(2114), + [anon_sym_unsafe] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_yield] = ACTIONS(2114), + [anon_sym_move] = ACTIONS(2114), + [anon_sym_try] = ACTIONS(2114), + [sym_integer_literal] = ACTIONS(2112), + [aux_sym_string_literal_token1] = ACTIONS(2112), + [sym_char_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2114), + [sym_super] = ACTIONS(2114), + [sym_crate] = ACTIONS(2114), + [sym_metavariable] = ACTIONS(2112), + [sym__raw_string_literal_start] = ACTIONS(2112), + [sym_float_literal] = ACTIONS(2112), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_macro_rules_BANG] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_u8] = ACTIONS(2120), - [anon_sym_i8] = ACTIONS(2120), - [anon_sym_u16] = ACTIONS(2120), - [anon_sym_i16] = ACTIONS(2120), - [anon_sym_u32] = ACTIONS(2120), - [anon_sym_i32] = ACTIONS(2120), - [anon_sym_u64] = ACTIONS(2120), - [anon_sym_i64] = ACTIONS(2120), - [anon_sym_u128] = ACTIONS(2120), - [anon_sym_i128] = ACTIONS(2120), - [anon_sym_isize] = ACTIONS(2120), - [anon_sym_usize] = ACTIONS(2120), - [anon_sym_f32] = ACTIONS(2120), - [anon_sym_f64] = ACTIONS(2120), - [anon_sym_bool] = ACTIONS(2120), - [anon_sym_str] = ACTIONS(2120), - [anon_sym_char] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_gen] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_mod] = ACTIONS(2120), - [anon_sym_pub] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_union] = ACTIONS(2120), - [anon_sym_unsafe] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [sym_integer_literal] = ACTIONS(2118), - [aux_sym_string_literal_token1] = ACTIONS(2118), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_macro_rules_BANG] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2116), + [anon_sym_u8] = ACTIONS(2118), + [anon_sym_i8] = ACTIONS(2118), + [anon_sym_u16] = ACTIONS(2118), + [anon_sym_i16] = ACTIONS(2118), + [anon_sym_u32] = ACTIONS(2118), + [anon_sym_i32] = ACTIONS(2118), + [anon_sym_u64] = ACTIONS(2118), + [anon_sym_i64] = ACTIONS(2118), + [anon_sym_u128] = ACTIONS(2118), + [anon_sym_i128] = ACTIONS(2118), + [anon_sym_isize] = ACTIONS(2118), + [anon_sym_usize] = ACTIONS(2118), + [anon_sym_f32] = ACTIONS(2118), + [anon_sym_f64] = ACTIONS(2118), + [anon_sym_bool] = ACTIONS(2118), + [anon_sym_str] = ACTIONS(2118), + [anon_sym_char] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2116), + [anon_sym_POUND] = ACTIONS(2116), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_default] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_fn] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_gen] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_impl] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_mod] = ACTIONS(2118), + [anon_sym_pub] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2118), + [anon_sym_trait] = ACTIONS(2118), + [anon_sym_type] = ACTIONS(2118), + [anon_sym_union] = ACTIONS(2118), + [anon_sym_unsafe] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_yield] = ACTIONS(2118), + [anon_sym_move] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [sym_integer_literal] = ACTIONS(2116), + [aux_sym_string_literal_token1] = ACTIONS(2116), + [sym_char_literal] = ACTIONS(2116), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2118), + [sym_super] = ACTIONS(2118), + [sym_crate] = ACTIONS(2118), + [sym_metavariable] = ACTIONS(2116), + [sym__raw_string_literal_start] = ACTIONS(2116), + [sym_float_literal] = ACTIONS(2116), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_macro_rules_BANG] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_u8] = ACTIONS(2124), - [anon_sym_i8] = ACTIONS(2124), - [anon_sym_u16] = ACTIONS(2124), - [anon_sym_i16] = ACTIONS(2124), - [anon_sym_u32] = ACTIONS(2124), - [anon_sym_i32] = ACTIONS(2124), - [anon_sym_u64] = ACTIONS(2124), - [anon_sym_i64] = ACTIONS(2124), - [anon_sym_u128] = ACTIONS(2124), - [anon_sym_i128] = ACTIONS(2124), - [anon_sym_isize] = ACTIONS(2124), - [anon_sym_usize] = ACTIONS(2124), - [anon_sym_f32] = ACTIONS(2124), - [anon_sym_f64] = ACTIONS(2124), - [anon_sym_bool] = ACTIONS(2124), - [anon_sym_str] = ACTIONS(2124), - [anon_sym_char] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_async] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_gen] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_impl] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_mod] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_trait] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2122), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_macro_rules_BANG] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_fn] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_impl] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_mod] = ACTIONS(2122), + [anon_sym_pub] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2120), + [aux_sym_string_literal_token1] = ACTIONS(2120), + [sym_char_literal] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2120), + [sym__raw_string_literal_start] = ACTIONS(2120), + [sym_float_literal] = ACTIONS(2120), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_macro_rules_BANG] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_u8] = ACTIONS(2128), - [anon_sym_i8] = ACTIONS(2128), - [anon_sym_u16] = ACTIONS(2128), - [anon_sym_i16] = ACTIONS(2128), - [anon_sym_u32] = ACTIONS(2128), - [anon_sym_i32] = ACTIONS(2128), - [anon_sym_u64] = ACTIONS(2128), - [anon_sym_i64] = ACTIONS(2128), - [anon_sym_u128] = ACTIONS(2128), - [anon_sym_i128] = ACTIONS(2128), - [anon_sym_isize] = ACTIONS(2128), - [anon_sym_usize] = ACTIONS(2128), - [anon_sym_f32] = ACTIONS(2128), - [anon_sym_f64] = ACTIONS(2128), - [anon_sym_bool] = ACTIONS(2128), - [anon_sym_str] = ACTIONS(2128), - [anon_sym_char] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_fn] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_gen] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_impl] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_mod] = ACTIONS(2128), - [anon_sym_pub] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_trait] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2126), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_macro_rules_BANG] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2126), + [anon_sym_i8] = ACTIONS(2126), + [anon_sym_u16] = ACTIONS(2126), + [anon_sym_i16] = ACTIONS(2126), + [anon_sym_u32] = ACTIONS(2126), + [anon_sym_i32] = ACTIONS(2126), + [anon_sym_u64] = ACTIONS(2126), + [anon_sym_i64] = ACTIONS(2126), + [anon_sym_u128] = ACTIONS(2126), + [anon_sym_i128] = ACTIONS(2126), + [anon_sym_isize] = ACTIONS(2126), + [anon_sym_usize] = ACTIONS(2126), + [anon_sym_f32] = ACTIONS(2126), + [anon_sym_f64] = ACTIONS(2126), + [anon_sym_bool] = ACTIONS(2126), + [anon_sym_str] = ACTIONS(2126), + [anon_sym_char] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [anon_sym_fn] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_gen] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_impl] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_mod] = ACTIONS(2126), + [anon_sym_pub] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_struct] = ACTIONS(2126), + [anon_sym_trait] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_move] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_crate] = ACTIONS(2126), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym_macro_rules_BANG] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_u8] = ACTIONS(2132), - [anon_sym_i8] = ACTIONS(2132), - [anon_sym_u16] = ACTIONS(2132), - [anon_sym_i16] = ACTIONS(2132), - [anon_sym_u32] = ACTIONS(2132), - [anon_sym_i32] = ACTIONS(2132), - [anon_sym_u64] = ACTIONS(2132), - [anon_sym_i64] = ACTIONS(2132), - [anon_sym_u128] = ACTIONS(2132), - [anon_sym_i128] = ACTIONS(2132), - [anon_sym_isize] = ACTIONS(2132), - [anon_sym_usize] = ACTIONS(2132), - [anon_sym_f32] = ACTIONS(2132), - [anon_sym_f64] = ACTIONS(2132), - [anon_sym_bool] = ACTIONS(2132), - [anon_sym_str] = ACTIONS(2132), - [anon_sym_char] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_async] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_fn] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_gen] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_impl] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_mod] = ACTIONS(2132), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_trait] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [sym_integer_literal] = ACTIONS(2130), - [aux_sym_string_literal_token1] = ACTIONS(2130), - [sym_char_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_macro_rules_BANG] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_u8] = ACTIONS(2130), + [anon_sym_i8] = ACTIONS(2130), + [anon_sym_u16] = ACTIONS(2130), + [anon_sym_i16] = ACTIONS(2130), + [anon_sym_u32] = ACTIONS(2130), + [anon_sym_i32] = ACTIONS(2130), + [anon_sym_u64] = ACTIONS(2130), + [anon_sym_i64] = ACTIONS(2130), + [anon_sym_u128] = ACTIONS(2130), + [anon_sym_i128] = ACTIONS(2130), + [anon_sym_isize] = ACTIONS(2130), + [anon_sym_usize] = ACTIONS(2130), + [anon_sym_f32] = ACTIONS(2130), + [anon_sym_f64] = ACTIONS(2130), + [anon_sym_bool] = ACTIONS(2130), + [anon_sym_str] = ACTIONS(2130), + [anon_sym_char] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(2128), + [anon_sym_AMP] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(2128), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_async] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_default] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_fn] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_gen] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_impl] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_mod] = ACTIONS(2130), + [anon_sym_pub] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_struct] = ACTIONS(2130), + [anon_sym_trait] = ACTIONS(2130), + [anon_sym_type] = ACTIONS(2130), + [anon_sym_union] = ACTIONS(2130), + [anon_sym_unsafe] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2130), + [anon_sym_move] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [sym_integer_literal] = ACTIONS(2128), + [aux_sym_string_literal_token1] = ACTIONS(2128), + [sym_char_literal] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2130), + [sym_super] = ACTIONS(2130), + [sym_crate] = ACTIONS(2130), + [sym_metavariable] = ACTIONS(2128), + [sym__raw_string_literal_start] = ACTIONS(2128), + [sym_float_literal] = ACTIONS(2128), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_macro_rules_BANG] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_u8] = ACTIONS(2136), - [anon_sym_i8] = ACTIONS(2136), - [anon_sym_u16] = ACTIONS(2136), - [anon_sym_i16] = ACTIONS(2136), - [anon_sym_u32] = ACTIONS(2136), - [anon_sym_i32] = ACTIONS(2136), - [anon_sym_u64] = ACTIONS(2136), - [anon_sym_i64] = ACTIONS(2136), - [anon_sym_u128] = ACTIONS(2136), - [anon_sym_i128] = ACTIONS(2136), - [anon_sym_isize] = ACTIONS(2136), - [anon_sym_usize] = ACTIONS(2136), - [anon_sym_f32] = ACTIONS(2136), - [anon_sym_f64] = ACTIONS(2136), - [anon_sym_bool] = ACTIONS(2136), - [anon_sym_str] = ACTIONS(2136), - [anon_sym_char] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_async] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_enum] = ACTIONS(2136), - [anon_sym_fn] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_gen] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_impl] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_mod] = ACTIONS(2136), - [anon_sym_pub] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(2136), - [anon_sym_trait] = ACTIONS(2136), - [anon_sym_type] = ACTIONS(2136), - [anon_sym_union] = ACTIONS(2136), - [anon_sym_unsafe] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [sym_integer_literal] = ACTIONS(2134), - [aux_sym_string_literal_token1] = ACTIONS(2134), - [sym_char_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_macro_rules_BANG] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_u8] = ACTIONS(2134), + [anon_sym_i8] = ACTIONS(2134), + [anon_sym_u16] = ACTIONS(2134), + [anon_sym_i16] = ACTIONS(2134), + [anon_sym_u32] = ACTIONS(2134), + [anon_sym_i32] = ACTIONS(2134), + [anon_sym_u64] = ACTIONS(2134), + [anon_sym_i64] = ACTIONS(2134), + [anon_sym_u128] = ACTIONS(2134), + [anon_sym_i128] = ACTIONS(2134), + [anon_sym_isize] = ACTIONS(2134), + [anon_sym_usize] = ACTIONS(2134), + [anon_sym_f32] = ACTIONS(2134), + [anon_sym_f64] = ACTIONS(2134), + [anon_sym_bool] = ACTIONS(2134), + [anon_sym_str] = ACTIONS(2134), + [anon_sym_char] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_fn] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_gen] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_impl] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_mod] = ACTIONS(2134), + [anon_sym_pub] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_trait] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_unsafe] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [sym_integer_literal] = ACTIONS(2132), + [aux_sym_string_literal_token1] = ACTIONS(2132), + [sym_char_literal] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2134), + [sym_metavariable] = ACTIONS(2132), + [sym__raw_string_literal_start] = ACTIONS(2132), + [sym_float_literal] = ACTIONS(2132), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_macro_rules_BANG] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_u8] = ACTIONS(2140), - [anon_sym_i8] = ACTIONS(2140), - [anon_sym_u16] = ACTIONS(2140), - [anon_sym_i16] = ACTIONS(2140), - [anon_sym_u32] = ACTIONS(2140), - [anon_sym_i32] = ACTIONS(2140), - [anon_sym_u64] = ACTIONS(2140), - [anon_sym_i64] = ACTIONS(2140), - [anon_sym_u128] = ACTIONS(2140), - [anon_sym_i128] = ACTIONS(2140), - [anon_sym_isize] = ACTIONS(2140), - [anon_sym_usize] = ACTIONS(2140), - [anon_sym_f32] = ACTIONS(2140), - [anon_sym_f64] = ACTIONS(2140), - [anon_sym_bool] = ACTIONS(2140), - [anon_sym_str] = ACTIONS(2140), - [anon_sym_char] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_fn] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_gen] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_impl] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_mod] = ACTIONS(2140), - [anon_sym_pub] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_trait] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [anon_sym_unsafe] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [sym_integer_literal] = ACTIONS(2138), - [aux_sym_string_literal_token1] = ACTIONS(2138), - [sym_char_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), - [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_macro_rules_BANG] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_u8] = ACTIONS(2138), + [anon_sym_i8] = ACTIONS(2138), + [anon_sym_u16] = ACTIONS(2138), + [anon_sym_i16] = ACTIONS(2138), + [anon_sym_u32] = ACTIONS(2138), + [anon_sym_i32] = ACTIONS(2138), + [anon_sym_u64] = ACTIONS(2138), + [anon_sym_i64] = ACTIONS(2138), + [anon_sym_u128] = ACTIONS(2138), + [anon_sym_i128] = ACTIONS(2138), + [anon_sym_isize] = ACTIONS(2138), + [anon_sym_usize] = ACTIONS(2138), + [anon_sym_f32] = ACTIONS(2138), + [anon_sym_f64] = ACTIONS(2138), + [anon_sym_bool] = ACTIONS(2138), + [anon_sym_str] = ACTIONS(2138), + [anon_sym_char] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_fn] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_gen] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_impl] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_mod] = ACTIONS(2138), + [anon_sym_pub] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_trait] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_unsafe] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [sym_integer_literal] = ACTIONS(2136), + [aux_sym_string_literal_token1] = ACTIONS(2136), + [sym_char_literal] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_crate] = ACTIONS(2138), + [sym_metavariable] = ACTIONS(2136), + [sym__raw_string_literal_start] = ACTIONS(2136), + [sym_float_literal] = ACTIONS(2136), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_u8] = ACTIONS(2144), - [anon_sym_i8] = ACTIONS(2144), - [anon_sym_u16] = ACTIONS(2144), - [anon_sym_i16] = ACTIONS(2144), - [anon_sym_u32] = ACTIONS(2144), - [anon_sym_i32] = ACTIONS(2144), - [anon_sym_u64] = ACTIONS(2144), - [anon_sym_i64] = ACTIONS(2144), - [anon_sym_u128] = ACTIONS(2144), - [anon_sym_i128] = ACTIONS(2144), - [anon_sym_isize] = ACTIONS(2144), - [anon_sym_usize] = ACTIONS(2144), - [anon_sym_f32] = ACTIONS(2144), - [anon_sym_f64] = ACTIONS(2144), - [anon_sym_bool] = ACTIONS(2144), - [anon_sym_str] = ACTIONS(2144), - [anon_sym_char] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_gen] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2142), - [aux_sym_string_literal_token1] = ACTIONS(2142), - [sym_char_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_macro_rules_BANG] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_u8] = ACTIONS(2142), + [anon_sym_i8] = ACTIONS(2142), + [anon_sym_u16] = ACTIONS(2142), + [anon_sym_i16] = ACTIONS(2142), + [anon_sym_u32] = ACTIONS(2142), + [anon_sym_i32] = ACTIONS(2142), + [anon_sym_u64] = ACTIONS(2142), + [anon_sym_i64] = ACTIONS(2142), + [anon_sym_u128] = ACTIONS(2142), + [anon_sym_i128] = ACTIONS(2142), + [anon_sym_isize] = ACTIONS(2142), + [anon_sym_usize] = ACTIONS(2142), + [anon_sym_f32] = ACTIONS(2142), + [anon_sym_f64] = ACTIONS(2142), + [anon_sym_bool] = ACTIONS(2142), + [anon_sym_str] = ACTIONS(2142), + [anon_sym_char] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_fn] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_gen] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_impl] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_mod] = ACTIONS(2142), + [anon_sym_pub] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2142), + [anon_sym_trait] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_union] = ACTIONS(2142), + [anon_sym_unsafe] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [sym_integer_literal] = ACTIONS(2140), + [aux_sym_string_literal_token1] = ACTIONS(2140), + [sym_char_literal] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_crate] = ACTIONS(2142), + [sym_metavariable] = ACTIONS(2140), + [sym__raw_string_literal_start] = ACTIONS(2140), + [sym_float_literal] = ACTIONS(2140), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_gen] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_macro_rules_BANG] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_u8] = ACTIONS(2146), + [anon_sym_i8] = ACTIONS(2146), + [anon_sym_u16] = ACTIONS(2146), + [anon_sym_i16] = ACTIONS(2146), + [anon_sym_u32] = ACTIONS(2146), + [anon_sym_i32] = ACTIONS(2146), + [anon_sym_u64] = ACTIONS(2146), + [anon_sym_i64] = ACTIONS(2146), + [anon_sym_u128] = ACTIONS(2146), + [anon_sym_i128] = ACTIONS(2146), + [anon_sym_isize] = ACTIONS(2146), + [anon_sym_usize] = ACTIONS(2146), + [anon_sym_f32] = ACTIONS(2146), + [anon_sym_f64] = ACTIONS(2146), + [anon_sym_bool] = ACTIONS(2146), + [anon_sym_str] = ACTIONS(2146), + [anon_sym_char] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_COLON_COLON] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_fn] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_gen] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_impl] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_mod] = ACTIONS(2146), + [anon_sym_pub] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_struct] = ACTIONS(2146), + [anon_sym_trait] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_unsafe] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [sym_integer_literal] = ACTIONS(2144), + [aux_sym_string_literal_token1] = ACTIONS(2144), + [sym_char_literal] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_crate] = ACTIONS(2146), + [sym_metavariable] = ACTIONS(2144), + [sym__raw_string_literal_start] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_gen] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_macro_rules_BANG] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_u8] = ACTIONS(2150), + [anon_sym_i8] = ACTIONS(2150), + [anon_sym_u16] = ACTIONS(2150), + [anon_sym_i16] = ACTIONS(2150), + [anon_sym_u32] = ACTIONS(2150), + [anon_sym_i32] = ACTIONS(2150), + [anon_sym_u64] = ACTIONS(2150), + [anon_sym_i64] = ACTIONS(2150), + [anon_sym_u128] = ACTIONS(2150), + [anon_sym_i128] = ACTIONS(2150), + [anon_sym_isize] = ACTIONS(2150), + [anon_sym_usize] = ACTIONS(2150), + [anon_sym_f32] = ACTIONS(2150), + [anon_sym_f64] = ACTIONS(2150), + [anon_sym_bool] = ACTIONS(2150), + [anon_sym_str] = ACTIONS(2150), + [anon_sym_char] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_fn] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_gen] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_impl] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_mod] = ACTIONS(2150), + [anon_sym_pub] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2150), + [anon_sym_trait] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_unsafe] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [sym_integer_literal] = ACTIONS(2148), + [aux_sym_string_literal_token1] = ACTIONS(2148), + [sym_char_literal] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2150), + [sym_super] = ACTIONS(2150), + [sym_crate] = ACTIONS(2150), + [sym_metavariable] = ACTIONS(2148), + [sym__raw_string_literal_start] = ACTIONS(2148), + [sym_float_literal] = ACTIONS(2148), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_gen] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_macro_rules_BANG] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_u8] = ACTIONS(2154), + [anon_sym_i8] = ACTIONS(2154), + [anon_sym_u16] = ACTIONS(2154), + [anon_sym_i16] = ACTIONS(2154), + [anon_sym_u32] = ACTIONS(2154), + [anon_sym_i32] = ACTIONS(2154), + [anon_sym_u64] = ACTIONS(2154), + [anon_sym_i64] = ACTIONS(2154), + [anon_sym_u128] = ACTIONS(2154), + [anon_sym_i128] = ACTIONS(2154), + [anon_sym_isize] = ACTIONS(2154), + [anon_sym_usize] = ACTIONS(2154), + [anon_sym_f32] = ACTIONS(2154), + [anon_sym_f64] = ACTIONS(2154), + [anon_sym_bool] = ACTIONS(2154), + [anon_sym_str] = ACTIONS(2154), + [anon_sym_char] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_fn] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_gen] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_impl] = ACTIONS(2154), + [anon_sym_let] = ACTIONS(2154), + [anon_sym_loop] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_mod] = ACTIONS(2154), + [anon_sym_pub] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2154), + [anon_sym_trait] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_union] = ACTIONS(2154), + [anon_sym_unsafe] = ACTIONS(2154), + [anon_sym_use] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_yield] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_try] = ACTIONS(2154), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2152), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2154), + [sym_super] = ACTIONS(2154), + [sym_crate] = ACTIONS(2154), + [sym_metavariable] = ACTIONS(2152), + [sym__raw_string_literal_start] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), }, [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_gen] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_macro_rules_BANG] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_async] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_fn] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_gen] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_impl] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_mod] = ACTIONS(2158), + [anon_sym_pub] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_struct] = ACTIONS(2158), + [anon_sym_trait] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_unsafe] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_yield] = ACTIONS(2158), + [anon_sym_move] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2156), + [aux_sym_string_literal_token1] = ACTIONS(2156), + [sym_char_literal] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2158), + [sym_super] = ACTIONS(2158), + [sym_crate] = ACTIONS(2158), + [sym_metavariable] = ACTIONS(2156), + [sym__raw_string_literal_start] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), }, [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_gen] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_macro_rules_BANG] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_u8] = ACTIONS(2162), + [anon_sym_i8] = ACTIONS(2162), + [anon_sym_u16] = ACTIONS(2162), + [anon_sym_i16] = ACTIONS(2162), + [anon_sym_u32] = ACTIONS(2162), + [anon_sym_i32] = ACTIONS(2162), + [anon_sym_u64] = ACTIONS(2162), + [anon_sym_i64] = ACTIONS(2162), + [anon_sym_u128] = ACTIONS(2162), + [anon_sym_i128] = ACTIONS(2162), + [anon_sym_isize] = ACTIONS(2162), + [anon_sym_usize] = ACTIONS(2162), + [anon_sym_f32] = ACTIONS(2162), + [anon_sym_f64] = ACTIONS(2162), + [anon_sym_bool] = ACTIONS(2162), + [anon_sym_str] = ACTIONS(2162), + [anon_sym_char] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_gen] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_impl] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_mod] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_trait] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_yield] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(2160), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2162), + [sym_super] = ACTIONS(2162), + [sym_crate] = ACTIONS(2162), + [sym_metavariable] = ACTIONS(2160), + [sym__raw_string_literal_start] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), }, [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_gen] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_macro_rules_BANG] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_u8] = ACTIONS(2166), + [anon_sym_i8] = ACTIONS(2166), + [anon_sym_u16] = ACTIONS(2166), + [anon_sym_i16] = ACTIONS(2166), + [anon_sym_u32] = ACTIONS(2166), + [anon_sym_i32] = ACTIONS(2166), + [anon_sym_u64] = ACTIONS(2166), + [anon_sym_i64] = ACTIONS(2166), + [anon_sym_u128] = ACTIONS(2166), + [anon_sym_i128] = ACTIONS(2166), + [anon_sym_isize] = ACTIONS(2166), + [anon_sym_usize] = ACTIONS(2166), + [anon_sym_f32] = ACTIONS(2166), + [anon_sym_f64] = ACTIONS(2166), + [anon_sym_bool] = ACTIONS(2166), + [anon_sym_str] = ACTIONS(2166), + [anon_sym_char] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_fn] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_gen] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_impl] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_loop] = ACTIONS(2166), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_mod] = ACTIONS(2166), + [anon_sym_pub] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_struct] = ACTIONS(2166), + [anon_sym_trait] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_union] = ACTIONS(2166), + [anon_sym_unsafe] = ACTIONS(2166), + [anon_sym_use] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_move] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [sym_integer_literal] = ACTIONS(2164), + [aux_sym_string_literal_token1] = ACTIONS(2164), + [sym_char_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_crate] = ACTIONS(2166), + [sym_metavariable] = ACTIONS(2164), + [sym__raw_string_literal_start] = ACTIONS(2164), + [sym_float_literal] = ACTIONS(2164), }, [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_gen] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_macro_rules_BANG] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_gen] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_impl] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_mod] = ACTIONS(2170), + [anon_sym_pub] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_struct] = ACTIONS(2170), + [anon_sym_trait] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_union] = ACTIONS(2170), + [anon_sym_unsafe] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_move] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [sym_integer_literal] = ACTIONS(2168), + [aux_sym_string_literal_token1] = ACTIONS(2168), + [sym_char_literal] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_crate] = ACTIONS(2170), + [sym_metavariable] = ACTIONS(2168), + [sym__raw_string_literal_start] = ACTIONS(2168), + [sym_float_literal] = ACTIONS(2168), }, [STATE(584)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [aux_sym_declaration_list_repeat1] = STATE(664), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [ts_builtin_sym_end] = ACTIONS(2172), [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_macro_rules_BANG] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_u8] = ACTIONS(2174), + [anon_sym_i8] = ACTIONS(2174), + [anon_sym_u16] = ACTIONS(2174), + [anon_sym_i16] = ACTIONS(2174), + [anon_sym_u32] = ACTIONS(2174), + [anon_sym_i32] = ACTIONS(2174), + [anon_sym_u64] = ACTIONS(2174), + [anon_sym_i64] = ACTIONS(2174), + [anon_sym_u128] = ACTIONS(2174), + [anon_sym_i128] = ACTIONS(2174), + [anon_sym_isize] = ACTIONS(2174), + [anon_sym_usize] = ACTIONS(2174), + [anon_sym_f32] = ACTIONS(2174), + [anon_sym_f64] = ACTIONS(2174), + [anon_sym_bool] = ACTIONS(2174), + [anon_sym_str] = ACTIONS(2174), + [anon_sym_char] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_fn] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_gen] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_impl] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_mod] = ACTIONS(2174), + [anon_sym_pub] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_struct] = ACTIONS(2174), + [anon_sym_trait] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_union] = ACTIONS(2174), + [anon_sym_unsafe] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_move] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [sym_integer_literal] = ACTIONS(2172), + [aux_sym_string_literal_token1] = ACTIONS(2172), + [sym_char_literal] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_crate] = ACTIONS(2174), + [sym_metavariable] = ACTIONS(2172), + [sym__raw_string_literal_start] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), + }, + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2178), [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [anon_sym_macro_rules_BANG] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_u8] = ACTIONS(2178), + [anon_sym_i8] = ACTIONS(2178), + [anon_sym_u16] = ACTIONS(2178), + [anon_sym_i16] = ACTIONS(2178), + [anon_sym_u32] = ACTIONS(2178), + [anon_sym_i32] = ACTIONS(2178), + [anon_sym_u64] = ACTIONS(2178), + [anon_sym_i64] = ACTIONS(2178), + [anon_sym_u128] = ACTIONS(2178), + [anon_sym_i128] = ACTIONS(2178), + [anon_sym_isize] = ACTIONS(2178), + [anon_sym_usize] = ACTIONS(2178), + [anon_sym_f32] = ACTIONS(2178), + [anon_sym_f64] = ACTIONS(2178), + [anon_sym_bool] = ACTIONS(2178), + [anon_sym_str] = ACTIONS(2178), + [anon_sym_char] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2176), + [anon_sym_COLON_COLON] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_fn] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_gen] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_impl] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_mod] = ACTIONS(2178), + [anon_sym_pub] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_trait] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_unsafe] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_move] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [sym_integer_literal] = ACTIONS(2176), + [aux_sym_string_literal_token1] = ACTIONS(2176), + [sym_char_literal] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_crate] = ACTIONS(2178), + [sym_metavariable] = ACTIONS(2176), + [sym__raw_string_literal_start] = ACTIONS(2176), + [sym_float_literal] = ACTIONS(2176), + }, + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_macro_rules_BANG] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), [anon_sym_u8] = ACTIONS(2182), [anon_sym_i8] = ACTIONS(2182), [anon_sym_u16] = ACTIONS(2182), @@ -78742,442 +78885,1276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2182), [anon_sym_str] = ACTIONS(2182), [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_fn] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_gen] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_impl] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_loop] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2228), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_pub] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_trait] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_unsafe] = ACTIONS(2228), - [anon_sym_use] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), - }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - [anon_sym_fn] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_gen] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_impl] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_loop] = ACTIONS(2232), - [anon_sym_match] = ACTIONS(2232), - [anon_sym_mod] = ACTIONS(2232), - [anon_sym_pub] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2232), - [anon_sym_trait] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_union] = ACTIONS(2232), - [anon_sym_unsafe] = ACTIONS(2232), - [anon_sym_use] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_fn] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_gen] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_impl] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_mod] = ACTIONS(2182), + [anon_sym_pub] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_trait] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_unsafe] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_move] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2180), + [aux_sym_string_literal_token1] = ACTIONS(2180), + [sym_char_literal] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_crate] = ACTIONS(2182), + [sym_metavariable] = ACTIONS(2180), + [sym__raw_string_literal_start] = ACTIONS(2180), + [sym_float_literal] = ACTIONS(2180), }, [STATE(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_gen] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_macro_rules_BANG] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_u8] = ACTIONS(2186), + [anon_sym_i8] = ACTIONS(2186), + [anon_sym_u16] = ACTIONS(2186), + [anon_sym_i16] = ACTIONS(2186), + [anon_sym_u32] = ACTIONS(2186), + [anon_sym_i32] = ACTIONS(2186), + [anon_sym_u64] = ACTIONS(2186), + [anon_sym_i64] = ACTIONS(2186), + [anon_sym_u128] = ACTIONS(2186), + [anon_sym_i128] = ACTIONS(2186), + [anon_sym_isize] = ACTIONS(2186), + [anon_sym_usize] = ACTIONS(2186), + [anon_sym_f32] = ACTIONS(2186), + [anon_sym_f64] = ACTIONS(2186), + [anon_sym_bool] = ACTIONS(2186), + [anon_sym_str] = ACTIONS(2186), + [anon_sym_char] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2184), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_fn] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_gen] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_impl] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_mod] = ACTIONS(2186), + [anon_sym_pub] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_trait] = ACTIONS(2186), + [anon_sym_type] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_unsafe] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_yield] = ACTIONS(2186), + [anon_sym_move] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(2184), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2184), + [sym__raw_string_literal_start] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), }, [STATE(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_gen] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_macro_rules_BANG] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_u8] = ACTIONS(2190), + [anon_sym_i8] = ACTIONS(2190), + [anon_sym_u16] = ACTIONS(2190), + [anon_sym_i16] = ACTIONS(2190), + [anon_sym_u32] = ACTIONS(2190), + [anon_sym_i32] = ACTIONS(2190), + [anon_sym_u64] = ACTIONS(2190), + [anon_sym_i64] = ACTIONS(2190), + [anon_sym_u128] = ACTIONS(2190), + [anon_sym_i128] = ACTIONS(2190), + [anon_sym_isize] = ACTIONS(2190), + [anon_sym_usize] = ACTIONS(2190), + [anon_sym_f32] = ACTIONS(2190), + [anon_sym_f64] = ACTIONS(2190), + [anon_sym_bool] = ACTIONS(2190), + [anon_sym_str] = ACTIONS(2190), + [anon_sym_char] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2190), + [anon_sym_async] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_fn] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_gen] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_impl] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_mod] = ACTIONS(2190), + [anon_sym_pub] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_trait] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_unsafe] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_yield] = ACTIONS(2190), + [anon_sym_move] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [sym_integer_literal] = ACTIONS(2188), + [aux_sym_string_literal_token1] = ACTIONS(2188), + [sym_char_literal] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2190), + [sym_super] = ACTIONS(2190), + [sym_crate] = ACTIONS(2190), + [sym_metavariable] = ACTIONS(2188), + [sym__raw_string_literal_start] = ACTIONS(2188), + [sym_float_literal] = ACTIONS(2188), }, [STATE(589)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_macro_rules_BANG] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_u8] = ACTIONS(2194), + [anon_sym_i8] = ACTIONS(2194), + [anon_sym_u16] = ACTIONS(2194), + [anon_sym_i16] = ACTIONS(2194), + [anon_sym_u32] = ACTIONS(2194), + [anon_sym_i32] = ACTIONS(2194), + [anon_sym_u64] = ACTIONS(2194), + [anon_sym_i64] = ACTIONS(2194), + [anon_sym_u128] = ACTIONS(2194), + [anon_sym_i128] = ACTIONS(2194), + [anon_sym_isize] = ACTIONS(2194), + [anon_sym_usize] = ACTIONS(2194), + [anon_sym_f32] = ACTIONS(2194), + [anon_sym_f64] = ACTIONS(2194), + [anon_sym_bool] = ACTIONS(2194), + [anon_sym_str] = ACTIONS(2194), + [anon_sym_char] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2194), + [anon_sym_async] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_impl] = ACTIONS(2194), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_loop] = ACTIONS(2194), + [anon_sym_match] = ACTIONS(2194), + [anon_sym_mod] = ACTIONS(2194), + [anon_sym_pub] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_trait] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_unsafe] = ACTIONS(2194), + [anon_sym_use] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_yield] = ACTIONS(2194), + [anon_sym_move] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [sym_integer_literal] = ACTIONS(2192), + [aux_sym_string_literal_token1] = ACTIONS(2192), + [sym_char_literal] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2194), + [sym_super] = ACTIONS(2194), + [sym_crate] = ACTIONS(2194), + [sym_metavariable] = ACTIONS(2192), + [sym__raw_string_literal_start] = ACTIONS(2192), + [sym_float_literal] = ACTIONS(2192), }, [STATE(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_macro_rules_BANG] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_u8] = ACTIONS(2198), + [anon_sym_i8] = ACTIONS(2198), + [anon_sym_u16] = ACTIONS(2198), + [anon_sym_i16] = ACTIONS(2198), + [anon_sym_u32] = ACTIONS(2198), + [anon_sym_i32] = ACTIONS(2198), + [anon_sym_u64] = ACTIONS(2198), + [anon_sym_i64] = ACTIONS(2198), + [anon_sym_u128] = ACTIONS(2198), + [anon_sym_i128] = ACTIONS(2198), + [anon_sym_isize] = ACTIONS(2198), + [anon_sym_usize] = ACTIONS(2198), + [anon_sym_f32] = ACTIONS(2198), + [anon_sym_f64] = ACTIONS(2198), + [anon_sym_bool] = ACTIONS(2198), + [anon_sym_str] = ACTIONS(2198), + [anon_sym_char] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2196), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_fn] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_gen] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_loop] = ACTIONS(2198), + [anon_sym_match] = ACTIONS(2198), + [anon_sym_mod] = ACTIONS(2198), + [anon_sym_pub] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_trait] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_unsafe] = ACTIONS(2198), + [anon_sym_use] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_move] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [sym_integer_literal] = ACTIONS(2196), + [aux_sym_string_literal_token1] = ACTIONS(2196), + [sym_char_literal] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_crate] = ACTIONS(2198), + [sym_metavariable] = ACTIONS(2196), + [sym__raw_string_literal_start] = ACTIONS(2196), + [sym_float_literal] = ACTIONS(2196), + }, + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_macro_rules_BANG] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_u8] = ACTIONS(2202), + [anon_sym_i8] = ACTIONS(2202), + [anon_sym_u16] = ACTIONS(2202), + [anon_sym_i16] = ACTIONS(2202), + [anon_sym_u32] = ACTIONS(2202), + [anon_sym_i32] = ACTIONS(2202), + [anon_sym_u64] = ACTIONS(2202), + [anon_sym_i64] = ACTIONS(2202), + [anon_sym_u128] = ACTIONS(2202), + [anon_sym_i128] = ACTIONS(2202), + [anon_sym_isize] = ACTIONS(2202), + [anon_sym_usize] = ACTIONS(2202), + [anon_sym_f32] = ACTIONS(2202), + [anon_sym_f64] = ACTIONS(2202), + [anon_sym_bool] = ACTIONS(2202), + [anon_sym_str] = ACTIONS(2202), + [anon_sym_char] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2202), + [anon_sym_async] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_fn] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_gen] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_impl] = ACTIONS(2202), + [anon_sym_let] = ACTIONS(2202), + [anon_sym_loop] = ACTIONS(2202), + [anon_sym_match] = ACTIONS(2202), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_trait] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_unsafe] = ACTIONS(2202), + [anon_sym_use] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_yield] = ACTIONS(2202), + [anon_sym_move] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2200), + [aux_sym_string_literal_token1] = ACTIONS(2200), + [sym_char_literal] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2202), + [sym_super] = ACTIONS(2202), + [sym_crate] = ACTIONS(2202), + [sym_metavariable] = ACTIONS(2200), + [sym__raw_string_literal_start] = ACTIONS(2200), + [sym_float_literal] = ACTIONS(2200), + }, + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_macro_rules_BANG] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_u8] = ACTIONS(2206), + [anon_sym_i8] = ACTIONS(2206), + [anon_sym_u16] = ACTIONS(2206), + [anon_sym_i16] = ACTIONS(2206), + [anon_sym_u32] = ACTIONS(2206), + [anon_sym_i32] = ACTIONS(2206), + [anon_sym_u64] = ACTIONS(2206), + [anon_sym_i64] = ACTIONS(2206), + [anon_sym_u128] = ACTIONS(2206), + [anon_sym_i128] = ACTIONS(2206), + [anon_sym_isize] = ACTIONS(2206), + [anon_sym_usize] = ACTIONS(2206), + [anon_sym_f32] = ACTIONS(2206), + [anon_sym_f64] = ACTIONS(2206), + [anon_sym_bool] = ACTIONS(2206), + [anon_sym_str] = ACTIONS(2206), + [anon_sym_char] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_gen] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_yield] = ACTIONS(2206), + [anon_sym_move] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2204), + [aux_sym_string_literal_token1] = ACTIONS(2204), + [sym_char_literal] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2204), + [sym__raw_string_literal_start] = ACTIONS(2204), + [sym_float_literal] = ACTIONS(2204), + }, + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_macro_rules_BANG] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_u8] = ACTIONS(2210), + [anon_sym_i8] = ACTIONS(2210), + [anon_sym_u16] = ACTIONS(2210), + [anon_sym_i16] = ACTIONS(2210), + [anon_sym_u32] = ACTIONS(2210), + [anon_sym_i32] = ACTIONS(2210), + [anon_sym_u64] = ACTIONS(2210), + [anon_sym_i64] = ACTIONS(2210), + [anon_sym_u128] = ACTIONS(2210), + [anon_sym_i128] = ACTIONS(2210), + [anon_sym_isize] = ACTIONS(2210), + [anon_sym_usize] = ACTIONS(2210), + [anon_sym_f32] = ACTIONS(2210), + [anon_sym_f64] = ACTIONS(2210), + [anon_sym_bool] = ACTIONS(2210), + [anon_sym_str] = ACTIONS(2210), + [anon_sym_char] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_DOT_DOT] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2210), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_fn] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_gen] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_impl] = ACTIONS(2210), + [anon_sym_let] = ACTIONS(2210), + [anon_sym_loop] = ACTIONS(2210), + [anon_sym_match] = ACTIONS(2210), + [anon_sym_mod] = ACTIONS(2210), + [anon_sym_pub] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_trait] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2210), + [anon_sym_use] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_yield] = ACTIONS(2210), + [anon_sym_move] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [sym_integer_literal] = ACTIONS(2208), + [aux_sym_string_literal_token1] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2210), + [sym_super] = ACTIONS(2210), + [sym_crate] = ACTIONS(2210), + [sym_metavariable] = ACTIONS(2208), + [sym__raw_string_literal_start] = ACTIONS(2208), + [sym_float_literal] = ACTIONS(2208), + }, + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_macro_rules_BANG] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_u8] = ACTIONS(2214), + [anon_sym_i8] = ACTIONS(2214), + [anon_sym_u16] = ACTIONS(2214), + [anon_sym_i16] = ACTIONS(2214), + [anon_sym_u32] = ACTIONS(2214), + [anon_sym_i32] = ACTIONS(2214), + [anon_sym_u64] = ACTIONS(2214), + [anon_sym_i64] = ACTIONS(2214), + [anon_sym_u128] = ACTIONS(2214), + [anon_sym_i128] = ACTIONS(2214), + [anon_sym_isize] = ACTIONS(2214), + [anon_sym_usize] = ACTIONS(2214), + [anon_sym_f32] = ACTIONS(2214), + [anon_sym_f64] = ACTIONS(2214), + [anon_sym_bool] = ACTIONS(2214), + [anon_sym_str] = ACTIONS(2214), + [anon_sym_char] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_DOT_DOT] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_fn] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_gen] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_impl] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_mod] = ACTIONS(2214), + [anon_sym_pub] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_trait] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_move] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2212), + [aux_sym_string_literal_token1] = ACTIONS(2212), + [sym_char_literal] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_crate] = ACTIONS(2214), + [sym_metavariable] = ACTIONS(2212), + [sym__raw_string_literal_start] = ACTIONS(2212), + [sym_float_literal] = ACTIONS(2212), + }, + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_macro_rules_BANG] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_u8] = ACTIONS(2218), + [anon_sym_i8] = ACTIONS(2218), + [anon_sym_u16] = ACTIONS(2218), + [anon_sym_i16] = ACTIONS(2218), + [anon_sym_u32] = ACTIONS(2218), + [anon_sym_i32] = ACTIONS(2218), + [anon_sym_u64] = ACTIONS(2218), + [anon_sym_i64] = ACTIONS(2218), + [anon_sym_u128] = ACTIONS(2218), + [anon_sym_i128] = ACTIONS(2218), + [anon_sym_isize] = ACTIONS(2218), + [anon_sym_usize] = ACTIONS(2218), + [anon_sym_f32] = ACTIONS(2218), + [anon_sym_f64] = ACTIONS(2218), + [anon_sym_bool] = ACTIONS(2218), + [anon_sym_str] = ACTIONS(2218), + [anon_sym_char] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2218), + [anon_sym_async] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_fn] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_gen] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_impl] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_mod] = ACTIONS(2218), + [anon_sym_pub] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_trait] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_unsafe] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_yield] = ACTIONS(2218), + [anon_sym_move] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [sym_integer_literal] = ACTIONS(2216), + [aux_sym_string_literal_token1] = ACTIONS(2216), + [sym_char_literal] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2218), + [sym_super] = ACTIONS(2218), + [sym_crate] = ACTIONS(2218), + [sym_metavariable] = ACTIONS(2216), + [sym__raw_string_literal_start] = ACTIONS(2216), + [sym_float_literal] = ACTIONS(2216), + }, + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_macro_rules_BANG] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_u8] = ACTIONS(2222), + [anon_sym_i8] = ACTIONS(2222), + [anon_sym_u16] = ACTIONS(2222), + [anon_sym_i16] = ACTIONS(2222), + [anon_sym_u32] = ACTIONS(2222), + [anon_sym_i32] = ACTIONS(2222), + [anon_sym_u64] = ACTIONS(2222), + [anon_sym_i64] = ACTIONS(2222), + [anon_sym_u128] = ACTIONS(2222), + [anon_sym_i128] = ACTIONS(2222), + [anon_sym_isize] = ACTIONS(2222), + [anon_sym_usize] = ACTIONS(2222), + [anon_sym_f32] = ACTIONS(2222), + [anon_sym_f64] = ACTIONS(2222), + [anon_sym_bool] = ACTIONS(2222), + [anon_sym_str] = ACTIONS(2222), + [anon_sym_char] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_DOT_DOT] = ACTIONS(2220), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_fn] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_gen] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_impl] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_mod] = ACTIONS(2222), + [anon_sym_pub] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_trait] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_unsafe] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_move] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [sym_integer_literal] = ACTIONS(2220), + [aux_sym_string_literal_token1] = ACTIONS(2220), + [sym_char_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2220), + [sym__raw_string_literal_start] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), + }, + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_macro_rules_BANG] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_u8] = ACTIONS(2226), + [anon_sym_i8] = ACTIONS(2226), + [anon_sym_u16] = ACTIONS(2226), + [anon_sym_i16] = ACTIONS(2226), + [anon_sym_u32] = ACTIONS(2226), + [anon_sym_i32] = ACTIONS(2226), + [anon_sym_u64] = ACTIONS(2226), + [anon_sym_i64] = ACTIONS(2226), + [anon_sym_u128] = ACTIONS(2226), + [anon_sym_i128] = ACTIONS(2226), + [anon_sym_isize] = ACTIONS(2226), + [anon_sym_usize] = ACTIONS(2226), + [anon_sym_f32] = ACTIONS(2226), + [anon_sym_f64] = ACTIONS(2226), + [anon_sym_bool] = ACTIONS(2226), + [anon_sym_str] = ACTIONS(2226), + [anon_sym_char] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_fn] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_gen] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_impl] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_mod] = ACTIONS(2226), + [anon_sym_pub] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_trait] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_unsafe] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_move] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [sym_integer_literal] = ACTIONS(2224), + [aux_sym_string_literal_token1] = ACTIONS(2224), + [sym_char_literal] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_crate] = ACTIONS(2226), + [sym_metavariable] = ACTIONS(2224), + [sym__raw_string_literal_start] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), + }, + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_macro_rules_BANG] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_u8] = ACTIONS(2230), + [anon_sym_i8] = ACTIONS(2230), + [anon_sym_u16] = ACTIONS(2230), + [anon_sym_i16] = ACTIONS(2230), + [anon_sym_u32] = ACTIONS(2230), + [anon_sym_i32] = ACTIONS(2230), + [anon_sym_u64] = ACTIONS(2230), + [anon_sym_i64] = ACTIONS(2230), + [anon_sym_u128] = ACTIONS(2230), + [anon_sym_i128] = ACTIONS(2230), + [anon_sym_isize] = ACTIONS(2230), + [anon_sym_usize] = ACTIONS(2230), + [anon_sym_f32] = ACTIONS(2230), + [anon_sym_f64] = ACTIONS(2230), + [anon_sym_bool] = ACTIONS(2230), + [anon_sym_str] = ACTIONS(2230), + [anon_sym_char] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_gen] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_impl] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_mod] = ACTIONS(2230), + [anon_sym_pub] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2230), + [anon_sym_struct] = ACTIONS(2230), + [anon_sym_trait] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_union] = ACTIONS(2230), + [anon_sym_unsafe] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_move] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [sym_integer_literal] = ACTIONS(2228), + [aux_sym_string_literal_token1] = ACTIONS(2228), + [sym_char_literal] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_crate] = ACTIONS(2230), + [sym_metavariable] = ACTIONS(2228), + [sym__raw_string_literal_start] = ACTIONS(2228), + [sym_float_literal] = ACTIONS(2228), + }, + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_macro_rules_BANG] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_u8] = ACTIONS(2234), + [anon_sym_i8] = ACTIONS(2234), + [anon_sym_u16] = ACTIONS(2234), + [anon_sym_i16] = ACTIONS(2234), + [anon_sym_u32] = ACTIONS(2234), + [anon_sym_i32] = ACTIONS(2234), + [anon_sym_u64] = ACTIONS(2234), + [anon_sym_i64] = ACTIONS(2234), + [anon_sym_u128] = ACTIONS(2234), + [anon_sym_i128] = ACTIONS(2234), + [anon_sym_isize] = ACTIONS(2234), + [anon_sym_usize] = ACTIONS(2234), + [anon_sym_f32] = ACTIONS(2234), + [anon_sym_f64] = ACTIONS(2234), + [anon_sym_bool] = ACTIONS(2234), + [anon_sym_str] = ACTIONS(2234), + [anon_sym_char] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_gen] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_impl] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_mod] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_trait] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_move] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [sym_integer_literal] = ACTIONS(2232), + [aux_sym_string_literal_token1] = ACTIONS(2232), + [sym_char_literal] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_crate] = ACTIONS(2234), + [sym_metavariable] = ACTIONS(2232), + [sym__raw_string_literal_start] = ACTIONS(2232), + [sym_float_literal] = ACTIONS(2232), + }, + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_macro_rules_BANG] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_u8] = ACTIONS(2238), + [anon_sym_i8] = ACTIONS(2238), + [anon_sym_u16] = ACTIONS(2238), + [anon_sym_i16] = ACTIONS(2238), + [anon_sym_u32] = ACTIONS(2238), + [anon_sym_i32] = ACTIONS(2238), + [anon_sym_u64] = ACTIONS(2238), + [anon_sym_i64] = ACTIONS(2238), + [anon_sym_u128] = ACTIONS(2238), + [anon_sym_i128] = ACTIONS(2238), + [anon_sym_isize] = ACTIONS(2238), + [anon_sym_usize] = ACTIONS(2238), + [anon_sym_f32] = ACTIONS(2238), + [anon_sym_f64] = ACTIONS(2238), + [anon_sym_bool] = ACTIONS(2238), + [anon_sym_str] = ACTIONS(2238), + [anon_sym_char] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_DOT_DOT] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_fn] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_gen] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_impl] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_mod] = ACTIONS(2238), + [anon_sym_pub] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_trait] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_unsafe] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_move] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [sym_integer_literal] = ACTIONS(2236), + [aux_sym_string_literal_token1] = ACTIONS(2236), + [sym_char_literal] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_crate] = ACTIONS(2238), + [sym_metavariable] = ACTIONS(2236), + [sym__raw_string_literal_start] = ACTIONS(2236), + [sym_float_literal] = ACTIONS(2236), + }, + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_macro_rules_BANG] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_u8] = ACTIONS(2242), + [anon_sym_i8] = ACTIONS(2242), + [anon_sym_u16] = ACTIONS(2242), + [anon_sym_i16] = ACTIONS(2242), + [anon_sym_u32] = ACTIONS(2242), + [anon_sym_i32] = ACTIONS(2242), + [anon_sym_u64] = ACTIONS(2242), + [anon_sym_i64] = ACTIONS(2242), + [anon_sym_u128] = ACTIONS(2242), + [anon_sym_i128] = ACTIONS(2242), + [anon_sym_isize] = ACTIONS(2242), + [anon_sym_usize] = ACTIONS(2242), + [anon_sym_f32] = ACTIONS(2242), + [anon_sym_f64] = ACTIONS(2242), + [anon_sym_bool] = ACTIONS(2242), + [anon_sym_str] = ACTIONS(2242), + [anon_sym_char] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [anon_sym_fn] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_gen] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_impl] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_mod] = ACTIONS(2242), + [anon_sym_pub] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(2242), + [anon_sym_trait] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_union] = ACTIONS(2242), + [anon_sym_unsafe] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_move] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [sym_integer_literal] = ACTIONS(2240), + [aux_sym_string_literal_token1] = ACTIONS(2240), + [sym_char_literal] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_crate] = ACTIONS(2242), + [sym_metavariable] = ACTIONS(2240), + [sym__raw_string_literal_start] = ACTIONS(2240), + [sym_float_literal] = ACTIONS(2240), + }, + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2244), [sym_identifier] = ACTIONS(2246), [anon_sym_SEMI] = ACTIONS(2244), @@ -79256,9 +80233,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2244), [sym_float_literal] = ACTIONS(2244), }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2248), [sym_identifier] = ACTIONS(2250), [anon_sym_SEMI] = ACTIONS(2248), @@ -79337,9 +80314,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2248), [sym_float_literal] = ACTIONS(2248), }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [STATE(604)] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2252), [sym_identifier] = ACTIONS(2254), [anon_sym_SEMI] = ACTIONS(2252), @@ -79418,9 +80395,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2252), [sym_float_literal] = ACTIONS(2252), }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [STATE(605)] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2256), [sym_identifier] = ACTIONS(2258), [anon_sym_SEMI] = ACTIONS(2256), @@ -79499,9 +80476,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2256), [sym_float_literal] = ACTIONS(2256), }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [STATE(606)] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2260), [sym_identifier] = ACTIONS(2262), [anon_sym_SEMI] = ACTIONS(2260), @@ -79580,9 +80557,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2260), [sym_float_literal] = ACTIONS(2260), }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [STATE(607)] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2264), [sym_identifier] = ACTIONS(2266), [anon_sym_SEMI] = ACTIONS(2264), @@ -79661,9 +80638,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2264), [sym_float_literal] = ACTIONS(2264), }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [STATE(608)] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2268), [sym_identifier] = ACTIONS(2270), [anon_sym_SEMI] = ACTIONS(2268), @@ -79742,9 +80719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2268), [sym_float_literal] = ACTIONS(2268), }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [STATE(609)] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2272), [sym_identifier] = ACTIONS(2274), [anon_sym_SEMI] = ACTIONS(2272), @@ -79823,9 +80800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2272), [sym_float_literal] = ACTIONS(2272), }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [STATE(610)] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2276), [sym_identifier] = ACTIONS(2278), [anon_sym_SEMI] = ACTIONS(2276), @@ -79904,9 +80881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2276), [sym_float_literal] = ACTIONS(2276), }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [STATE(611)] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2280), [sym_identifier] = ACTIONS(2282), [anon_sym_SEMI] = ACTIONS(2280), @@ -79985,9 +80962,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2280), [sym_float_literal] = ACTIONS(2280), }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [STATE(612)] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2284), [sym_identifier] = ACTIONS(2286), [anon_sym_SEMI] = ACTIONS(2284), @@ -80066,9 +81043,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2284), [sym_float_literal] = ACTIONS(2284), }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [STATE(613)] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2288), [sym_identifier] = ACTIONS(2290), [anon_sym_SEMI] = ACTIONS(2288), @@ -80147,9 +81124,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2288), [sym_float_literal] = ACTIONS(2288), }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [STATE(614)] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2292), [sym_identifier] = ACTIONS(2294), [anon_sym_SEMI] = ACTIONS(2292), @@ -80228,9 +81205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2292), [sym_float_literal] = ACTIONS(2292), }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [STATE(615)] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2296), [sym_identifier] = ACTIONS(2298), [anon_sym_SEMI] = ACTIONS(2296), @@ -80309,9 +81286,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2296), [sym_float_literal] = ACTIONS(2296), }, - [STATE(604)] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [STATE(616)] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), [ts_builtin_sym_end] = ACTIONS(2300), [sym_identifier] = ACTIONS(2302), [anon_sym_SEMI] = ACTIONS(2300), @@ -80390,9 +81367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2300), [sym_float_literal] = ACTIONS(2300), }, - [STATE(605)] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [STATE(617)] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2304), [sym_identifier] = ACTIONS(2306), [anon_sym_SEMI] = ACTIONS(2304), @@ -80471,9 +81448,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2304), [sym_float_literal] = ACTIONS(2304), }, - [STATE(606)] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [STATE(618)] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2308), [sym_identifier] = ACTIONS(2310), [anon_sym_SEMI] = ACTIONS(2308), @@ -80552,9 +81529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2308), [sym_float_literal] = ACTIONS(2308), }, - [STATE(607)] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [STATE(619)] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2312), [sym_identifier] = ACTIONS(2314), [anon_sym_SEMI] = ACTIONS(2312), @@ -80633,9 +81610,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2312), [sym_float_literal] = ACTIONS(2312), }, - [STATE(608)] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [STATE(620)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_pattern] = STATE(3609), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [aux_sym_match_arm_repeat1] = STATE(1073), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), + }, + [STATE(621)] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2316), [sym_identifier] = ACTIONS(2318), [anon_sym_SEMI] = ACTIONS(2316), @@ -80714,9 +81772,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2316), [sym_float_literal] = ACTIONS(2316), }, - [STATE(609)] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [STATE(622)] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2320), [sym_identifier] = ACTIONS(2322), [anon_sym_SEMI] = ACTIONS(2320), @@ -80795,9 +81853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2320), [sym_float_literal] = ACTIONS(2320), }, - [STATE(610)] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [STATE(623)] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2324), [sym_identifier] = ACTIONS(2326), [anon_sym_SEMI] = ACTIONS(2324), @@ -80876,9 +81934,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2324), [sym_float_literal] = ACTIONS(2324), }, - [STATE(611)] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [STATE(624)] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2328), [sym_identifier] = ACTIONS(2330), [anon_sym_SEMI] = ACTIONS(2328), @@ -80957,9 +82015,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2328), [sym_float_literal] = ACTIONS(2328), }, - [STATE(612)] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [STATE(625)] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2332), [sym_identifier] = ACTIONS(2334), [anon_sym_SEMI] = ACTIONS(2332), @@ -81038,9 +82096,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2332), [sym_float_literal] = ACTIONS(2332), }, - [STATE(613)] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [STATE(626)] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2336), [sym_identifier] = ACTIONS(2338), [anon_sym_SEMI] = ACTIONS(2336), @@ -81119,9 +82177,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2336), [sym_float_literal] = ACTIONS(2336), }, - [STATE(614)] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [STATE(627)] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2340), [sym_identifier] = ACTIONS(2342), [anon_sym_SEMI] = ACTIONS(2340), @@ -81200,9 +82258,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2340), [sym_float_literal] = ACTIONS(2340), }, - [STATE(615)] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [STATE(628)] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2344), [sym_identifier] = ACTIONS(2346), [anon_sym_SEMI] = ACTIONS(2344), @@ -81281,9 +82339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2344), [sym_float_literal] = ACTIONS(2344), }, - [STATE(616)] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [STATE(629)] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2348), [sym_identifier] = ACTIONS(2350), [anon_sym_SEMI] = ACTIONS(2348), @@ -81362,9 +82420,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2348), [sym_float_literal] = ACTIONS(2348), }, - [STATE(617)] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [STATE(630)] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2352), [sym_identifier] = ACTIONS(2354), [anon_sym_SEMI] = ACTIONS(2352), @@ -81443,9 +82501,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2352), [sym_float_literal] = ACTIONS(2352), }, - [STATE(618)] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2356), [sym_identifier] = ACTIONS(2358), [anon_sym_SEMI] = ACTIONS(2356), @@ -81524,9 +82582,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2356), [sym_float_literal] = ACTIONS(2356), }, - [STATE(619)] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [STATE(632)] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2360), [sym_identifier] = ACTIONS(2362), [anon_sym_SEMI] = ACTIONS(2360), @@ -81605,9 +82663,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2360), [sym_float_literal] = ACTIONS(2360), }, - [STATE(620)] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [STATE(633)] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2364), [sym_identifier] = ACTIONS(2366), [anon_sym_SEMI] = ACTIONS(2364), @@ -81686,9 +82744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2364), [sym_float_literal] = ACTIONS(2364), }, - [STATE(621)] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [STATE(634)] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2368), [sym_identifier] = ACTIONS(2370), [anon_sym_SEMI] = ACTIONS(2368), @@ -81767,9 +82825,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2368), [sym_float_literal] = ACTIONS(2368), }, - [STATE(622)] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [STATE(635)] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2372), [sym_identifier] = ACTIONS(2374), [anon_sym_SEMI] = ACTIONS(2372), @@ -81848,9 +82906,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2372), [sym_float_literal] = ACTIONS(2372), }, - [STATE(623)] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [STATE(636)] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2376), [sym_identifier] = ACTIONS(2378), [anon_sym_SEMI] = ACTIONS(2376), @@ -81929,9 +82987,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2376), [sym_float_literal] = ACTIONS(2376), }, - [STATE(624)] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [STATE(637)] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), [anon_sym_SEMI] = ACTIONS(2380), @@ -82010,9 +83068,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2380), [sym_float_literal] = ACTIONS(2380), }, - [STATE(625)] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2384), [sym_identifier] = ACTIONS(2386), [anon_sym_SEMI] = ACTIONS(2384), @@ -82091,1868 +83149,815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2384), [sym_float_literal] = ACTIONS(2384), }, - [STATE(626)] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_macro_rules_BANG] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_u8] = ACTIONS(2390), - [anon_sym_i8] = ACTIONS(2390), - [anon_sym_u16] = ACTIONS(2390), - [anon_sym_i16] = ACTIONS(2390), - [anon_sym_u32] = ACTIONS(2390), - [anon_sym_i32] = ACTIONS(2390), - [anon_sym_u64] = ACTIONS(2390), - [anon_sym_i64] = ACTIONS(2390), - [anon_sym_u128] = ACTIONS(2390), - [anon_sym_i128] = ACTIONS(2390), - [anon_sym_isize] = ACTIONS(2390), - [anon_sym_usize] = ACTIONS(2390), - [anon_sym_f32] = ACTIONS(2390), - [anon_sym_f64] = ACTIONS(2390), - [anon_sym_bool] = ACTIONS(2390), - [anon_sym_str] = ACTIONS(2390), - [anon_sym_char] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_DOT_DOT] = ACTIONS(2388), - [anon_sym_COLON_COLON] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - [anon_sym_fn] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_gen] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_impl] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_mod] = ACTIONS(2390), - [anon_sym_pub] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2390), - [anon_sym_trait] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_union] = ACTIONS(2390), - [anon_sym_unsafe] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_move] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [aux_sym_string_literal_token1] = ACTIONS(2388), - [sym_char_literal] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_crate] = ACTIONS(2390), - [sym_metavariable] = ACTIONS(2388), - [sym__raw_string_literal_start] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(2388), - }, - [STATE(627)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3705), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(628)] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_identifier] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_macro_rules_BANG] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_u8] = ACTIONS(2394), - [anon_sym_i8] = ACTIONS(2394), - [anon_sym_u16] = ACTIONS(2394), - [anon_sym_i16] = ACTIONS(2394), - [anon_sym_u32] = ACTIONS(2394), - [anon_sym_i32] = ACTIONS(2394), - [anon_sym_u64] = ACTIONS(2394), - [anon_sym_i64] = ACTIONS(2394), - [anon_sym_u128] = ACTIONS(2394), - [anon_sym_i128] = ACTIONS(2394), - [anon_sym_isize] = ACTIONS(2394), - [anon_sym_usize] = ACTIONS(2394), - [anon_sym_f32] = ACTIONS(2394), - [anon_sym_f64] = ACTIONS(2394), - [anon_sym_bool] = ACTIONS(2394), - [anon_sym_str] = ACTIONS(2394), - [anon_sym_char] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_gen] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_impl] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2394), - [anon_sym_pub] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_trait] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsafe] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_move] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [sym_integer_literal] = ACTIONS(2392), - [aux_sym_string_literal_token1] = ACTIONS(2392), - [sym_char_literal] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_crate] = ACTIONS(2394), - [sym_metavariable] = ACTIONS(2392), - [sym__raw_string_literal_start] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), - }, - [STATE(629)] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_u8] = ACTIONS(2398), - [anon_sym_i8] = ACTIONS(2398), - [anon_sym_u16] = ACTIONS(2398), - [anon_sym_i16] = ACTIONS(2398), - [anon_sym_u32] = ACTIONS(2398), - [anon_sym_i32] = ACTIONS(2398), - [anon_sym_u64] = ACTIONS(2398), - [anon_sym_i64] = ACTIONS(2398), - [anon_sym_u128] = ACTIONS(2398), - [anon_sym_i128] = ACTIONS(2398), - [anon_sym_isize] = ACTIONS(2398), - [anon_sym_usize] = ACTIONS(2398), - [anon_sym_f32] = ACTIONS(2398), - [anon_sym_f64] = ACTIONS(2398), - [anon_sym_bool] = ACTIONS(2398), - [anon_sym_str] = ACTIONS(2398), - [anon_sym_char] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2396), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_gen] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_mod] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_trait] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_move] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [sym_integer_literal] = ACTIONS(2396), - [aux_sym_string_literal_token1] = ACTIONS(2396), - [sym_char_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_crate] = ACTIONS(2398), - [sym_metavariable] = ACTIONS(2396), - [sym__raw_string_literal_start] = ACTIONS(2396), - [sym_float_literal] = ACTIONS(2396), - }, - [STATE(630)] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_gen] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - }, - [STATE(631)] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [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_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [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_gen] = 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_extern] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - }, - [STATE(632)] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_macro_rules_BANG] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2406), - [anon_sym_i8] = ACTIONS(2406), - [anon_sym_u16] = ACTIONS(2406), - [anon_sym_i16] = ACTIONS(2406), - [anon_sym_u32] = ACTIONS(2406), - [anon_sym_i32] = ACTIONS(2406), - [anon_sym_u64] = ACTIONS(2406), - [anon_sym_i64] = ACTIONS(2406), - [anon_sym_u128] = ACTIONS(2406), - [anon_sym_i128] = ACTIONS(2406), - [anon_sym_isize] = ACTIONS(2406), - [anon_sym_usize] = ACTIONS(2406), - [anon_sym_f32] = ACTIONS(2406), - [anon_sym_f64] = ACTIONS(2406), - [anon_sym_bool] = ACTIONS(2406), - [anon_sym_str] = ACTIONS(2406), - [anon_sym_char] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2404), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_gen] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_impl] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_mod] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_trait] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_yield] = ACTIONS(2406), - [anon_sym_move] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [sym_integer_literal] = ACTIONS(2404), - [aux_sym_string_literal_token1] = ACTIONS(2404), - [sym_char_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_crate] = ACTIONS(2406), - [sym_metavariable] = ACTIONS(2404), - [sym__raw_string_literal_start] = ACTIONS(2404), - [sym_float_literal] = ACTIONS(2404), - }, - [STATE(633)] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_macro_rules_BANG] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_u8] = ACTIONS(2410), - [anon_sym_i8] = ACTIONS(2410), - [anon_sym_u16] = ACTIONS(2410), - [anon_sym_i16] = ACTIONS(2410), - [anon_sym_u32] = ACTIONS(2410), - [anon_sym_i32] = ACTIONS(2410), - [anon_sym_u64] = ACTIONS(2410), - [anon_sym_i64] = ACTIONS(2410), - [anon_sym_u128] = ACTIONS(2410), - [anon_sym_i128] = ACTIONS(2410), - [anon_sym_isize] = ACTIONS(2410), - [anon_sym_usize] = ACTIONS(2410), - [anon_sym_f32] = ACTIONS(2410), - [anon_sym_f64] = ACTIONS(2410), - [anon_sym_bool] = ACTIONS(2410), - [anon_sym_str] = ACTIONS(2410), - [anon_sym_char] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_DOT_DOT] = ACTIONS(2408), - [anon_sym_COLON_COLON] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2408), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_fn] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_gen] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_impl] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_mod] = ACTIONS(2410), - [anon_sym_pub] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_trait] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [anon_sym_unsafe] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_move] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [sym_integer_literal] = ACTIONS(2408), - [aux_sym_string_literal_token1] = ACTIONS(2408), - [sym_char_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_crate] = ACTIONS(2410), - [sym_metavariable] = ACTIONS(2408), - [sym__raw_string_literal_start] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2408), - }, - [STATE(634)] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_macro_rules_BANG] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2412), - [anon_sym_u8] = ACTIONS(2414), - [anon_sym_i8] = ACTIONS(2414), - [anon_sym_u16] = ACTIONS(2414), - [anon_sym_i16] = ACTIONS(2414), - [anon_sym_u32] = ACTIONS(2414), - [anon_sym_i32] = ACTIONS(2414), - [anon_sym_u64] = ACTIONS(2414), - [anon_sym_i64] = ACTIONS(2414), - [anon_sym_u128] = ACTIONS(2414), - [anon_sym_i128] = ACTIONS(2414), - [anon_sym_isize] = ACTIONS(2414), - [anon_sym_usize] = ACTIONS(2414), - [anon_sym_f32] = ACTIONS(2414), - [anon_sym_f64] = ACTIONS(2414), - [anon_sym_bool] = ACTIONS(2414), - [anon_sym_str] = ACTIONS(2414), - [anon_sym_char] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [anon_sym_COLON_COLON] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2412), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_fn] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_gen] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_impl] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_mod] = ACTIONS(2414), - [anon_sym_pub] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_trait] = ACTIONS(2414), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_unsafe] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_yield] = ACTIONS(2414), - [anon_sym_move] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [sym_integer_literal] = ACTIONS(2412), - [aux_sym_string_literal_token1] = ACTIONS(2412), - [sym_char_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2414), - [sym_super] = ACTIONS(2414), - [sym_crate] = ACTIONS(2414), - [sym_metavariable] = ACTIONS(2412), - [sym__raw_string_literal_start] = ACTIONS(2412), - [sym_float_literal] = ACTIONS(2412), - }, - [STATE(635)] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_macro_rules_BANG] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_u8] = ACTIONS(2418), - [anon_sym_i8] = ACTIONS(2418), - [anon_sym_u16] = ACTIONS(2418), - [anon_sym_i16] = ACTIONS(2418), - [anon_sym_u32] = ACTIONS(2418), - [anon_sym_i32] = ACTIONS(2418), - [anon_sym_u64] = ACTIONS(2418), - [anon_sym_i64] = ACTIONS(2418), - [anon_sym_u128] = ACTIONS(2418), - [anon_sym_i128] = ACTIONS(2418), - [anon_sym_isize] = ACTIONS(2418), - [anon_sym_usize] = ACTIONS(2418), - [anon_sym_f32] = ACTIONS(2418), - [anon_sym_f64] = ACTIONS(2418), - [anon_sym_bool] = ACTIONS(2418), - [anon_sym_str] = ACTIONS(2418), - [anon_sym_char] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_DOT_DOT] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - [anon_sym_fn] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_gen] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_impl] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_mod] = ACTIONS(2418), - [anon_sym_pub] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(2418), - [anon_sym_trait] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_union] = ACTIONS(2418), - [anon_sym_unsafe] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2418), - [anon_sym_move] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [sym_integer_literal] = ACTIONS(2416), - [aux_sym_string_literal_token1] = ACTIONS(2416), - [sym_char_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_crate] = ACTIONS(2418), - [sym_metavariable] = ACTIONS(2416), - [sym__raw_string_literal_start] = ACTIONS(2416), - [sym_float_literal] = ACTIONS(2416), - }, - [STATE(636)] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_macro_rules_BANG] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2420), - [anon_sym_u8] = ACTIONS(2422), - [anon_sym_i8] = ACTIONS(2422), - [anon_sym_u16] = ACTIONS(2422), - [anon_sym_i16] = ACTIONS(2422), - [anon_sym_u32] = ACTIONS(2422), - [anon_sym_i32] = ACTIONS(2422), - [anon_sym_u64] = ACTIONS(2422), - [anon_sym_i64] = ACTIONS(2422), - [anon_sym_u128] = ACTIONS(2422), - [anon_sym_i128] = ACTIONS(2422), - [anon_sym_isize] = ACTIONS(2422), - [anon_sym_usize] = ACTIONS(2422), - [anon_sym_f32] = ACTIONS(2422), - [anon_sym_f64] = ACTIONS(2422), - [anon_sym_bool] = ACTIONS(2422), - [anon_sym_str] = ACTIONS(2422), - [anon_sym_char] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_DOT_DOT] = ACTIONS(2420), - [anon_sym_COLON_COLON] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_fn] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_gen] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_impl] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_mod] = ACTIONS(2422), - [anon_sym_pub] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_trait] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_unsafe] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_move] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [sym_integer_literal] = ACTIONS(2420), - [aux_sym_string_literal_token1] = ACTIONS(2420), - [sym_char_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_crate] = ACTIONS(2422), - [sym_metavariable] = ACTIONS(2420), - [sym__raw_string_literal_start] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(2420), - }, - [STATE(637)] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_macro_rules_BANG] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_u8] = ACTIONS(2426), - [anon_sym_i8] = ACTIONS(2426), - [anon_sym_u16] = ACTIONS(2426), - [anon_sym_i16] = ACTIONS(2426), - [anon_sym_u32] = ACTIONS(2426), - [anon_sym_i32] = ACTIONS(2426), - [anon_sym_u64] = ACTIONS(2426), - [anon_sym_i64] = ACTIONS(2426), - [anon_sym_u128] = ACTIONS(2426), - [anon_sym_i128] = ACTIONS(2426), - [anon_sym_isize] = ACTIONS(2426), - [anon_sym_usize] = ACTIONS(2426), - [anon_sym_f32] = ACTIONS(2426), - [anon_sym_f64] = ACTIONS(2426), - [anon_sym_bool] = ACTIONS(2426), - [anon_sym_str] = ACTIONS(2426), - [anon_sym_char] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2424), - [anon_sym_COLON_COLON] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [anon_sym_fn] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_gen] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_impl] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_mod] = ACTIONS(2426), - [anon_sym_pub] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2426), - [anon_sym_trait] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_union] = ACTIONS(2426), - [anon_sym_unsafe] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_move] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [sym_integer_literal] = ACTIONS(2424), - [aux_sym_string_literal_token1] = ACTIONS(2424), - [sym_char_literal] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_crate] = ACTIONS(2426), - [sym_metavariable] = ACTIONS(2424), - [sym__raw_string_literal_start] = ACTIONS(2424), - [sym_float_literal] = ACTIONS(2424), - }, - [STATE(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_macro_rules_BANG] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u128] = ACTIONS(2430), - [anon_sym_i128] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_str] = ACTIONS(2430), - [anon_sym_char] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [anon_sym_COLON_COLON] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2430), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_default] = ACTIONS(2430), - [anon_sym_enum] = ACTIONS(2430), - [anon_sym_fn] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_gen] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_mod] = ACTIONS(2430), - [anon_sym_pub] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(2430), - [anon_sym_trait] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_unsafe] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [sym_integer_literal] = ACTIONS(2428), - [aux_sym_string_literal_token1] = ACTIONS(2428), - [sym_char_literal] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(2430), - [sym_crate] = ACTIONS(2430), - [sym_metavariable] = ACTIONS(2428), - [sym__raw_string_literal_start] = ACTIONS(2428), - [sym_float_literal] = ACTIONS(2428), - }, [STATE(639)] = { + [sym_empty_statement] = STATE(1305), + [sym_macro_definition] = STATE(1305), + [sym_attribute_item] = STATE(1305), + [sym_inner_attribute_item] = STATE(1305), + [sym_mod_item] = STATE(1305), + [sym_foreign_mod_item] = STATE(1305), + [sym_struct_item] = STATE(1305), + [sym_union_item] = STATE(1305), + [sym_enum_item] = STATE(1305), + [sym_extern_crate_declaration] = STATE(1305), + [sym_const_item] = STATE(1305), + [sym_static_item] = STATE(1305), + [sym_type_item] = STATE(1305), + [sym_function_item] = STATE(1305), + [sym_function_signature_item] = STATE(1305), + [sym_function_modifiers] = STATE(3747), + [sym_impl_item] = STATE(1305), + [sym_trait_item] = STATE(1305), + [sym_associated_type] = STATE(1305), + [sym_let_declaration] = STATE(1305), + [sym_use_declaration] = STATE(1305), + [sym_extern_modifier] = STATE(2250), + [sym_visibility_modifier] = STATE(2009), + [sym_bracketed_type] = STATE(3696), + [sym_generic_type_with_turbofish] = STATE(3770), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(3191), [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_macro_rules_BANG] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2432), - [anon_sym_u8] = ACTIONS(2434), - [anon_sym_i8] = ACTIONS(2434), - [anon_sym_u16] = ACTIONS(2434), - [anon_sym_i16] = ACTIONS(2434), - [anon_sym_u32] = ACTIONS(2434), - [anon_sym_i32] = ACTIONS(2434), - [anon_sym_u64] = ACTIONS(2434), - [anon_sym_i64] = ACTIONS(2434), - [anon_sym_u128] = ACTIONS(2434), - [anon_sym_i128] = ACTIONS(2434), - [anon_sym_isize] = ACTIONS(2434), - [anon_sym_usize] = ACTIONS(2434), - [anon_sym_f32] = ACTIONS(2434), - [anon_sym_f64] = ACTIONS(2434), - [anon_sym_bool] = ACTIONS(2434), - [anon_sym_str] = ACTIONS(2434), - [anon_sym_char] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_DOT_DOT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [anon_sym_fn] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_gen] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_impl] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_mod] = ACTIONS(2434), - [anon_sym_pub] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_struct] = ACTIONS(2434), - [anon_sym_trait] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_union] = ACTIONS(2434), - [anon_sym_unsafe] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_move] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [sym_integer_literal] = ACTIONS(2432), - [aux_sym_string_literal_token1] = ACTIONS(2432), - [sym_char_literal] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_crate] = ACTIONS(2434), - [sym_metavariable] = ACTIONS(2432), - [sym__raw_string_literal_start] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(2432), + [aux_sym_declaration_list_repeat1] = STATE(639), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_macro_rules_BANG] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2399), + [anon_sym_i8] = ACTIONS(2399), + [anon_sym_u16] = ACTIONS(2399), + [anon_sym_i16] = ACTIONS(2399), + [anon_sym_u32] = ACTIONS(2399), + [anon_sym_i32] = ACTIONS(2399), + [anon_sym_u64] = ACTIONS(2399), + [anon_sym_i64] = ACTIONS(2399), + [anon_sym_u128] = ACTIONS(2399), + [anon_sym_i128] = ACTIONS(2399), + [anon_sym_isize] = ACTIONS(2399), + [anon_sym_usize] = ACTIONS(2399), + [anon_sym_f32] = ACTIONS(2399), + [anon_sym_f64] = ACTIONS(2399), + [anon_sym_bool] = ACTIONS(2399), + [anon_sym_str] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_COLON_COLON] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_gen] = ACTIONS(2426), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_mod] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_trait] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2465), + [sym_super] = ACTIONS(2465), + [sym_crate] = ACTIONS(2468), + [sym_metavariable] = ACTIONS(2471), }, [STATE(640)] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2436), - [sym_identifier] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_macro_rules_BANG] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_u8] = ACTIONS(2438), - [anon_sym_i8] = ACTIONS(2438), - [anon_sym_u16] = ACTIONS(2438), - [anon_sym_i16] = ACTIONS(2438), - [anon_sym_u32] = ACTIONS(2438), - [anon_sym_i32] = ACTIONS(2438), - [anon_sym_u64] = ACTIONS(2438), - [anon_sym_i64] = ACTIONS(2438), - [anon_sym_u128] = ACTIONS(2438), - [anon_sym_i128] = ACTIONS(2438), - [anon_sym_isize] = ACTIONS(2438), - [anon_sym_usize] = ACTIONS(2438), - [anon_sym_f32] = ACTIONS(2438), - [anon_sym_f64] = ACTIONS(2438), - [anon_sym_bool] = ACTIONS(2438), - [anon_sym_str] = ACTIONS(2438), - [anon_sym_char] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [anon_sym_fn] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_gen] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_impl] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_mod] = ACTIONS(2438), - [anon_sym_pub] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_struct] = ACTIONS(2438), - [anon_sym_trait] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_union] = ACTIONS(2438), - [anon_sym_unsafe] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_move] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [sym_integer_literal] = ACTIONS(2436), - [aux_sym_string_literal_token1] = ACTIONS(2436), - [sym_char_literal] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_crate] = ACTIONS(2438), - [sym_metavariable] = ACTIONS(2436), - [sym__raw_string_literal_start] = ACTIONS(2436), - [sym_float_literal] = ACTIONS(2436), + [ts_builtin_sym_end] = ACTIONS(2474), + [sym_identifier] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_macro_rules_BANG] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_u8] = ACTIONS(2476), + [anon_sym_i8] = ACTIONS(2476), + [anon_sym_u16] = ACTIONS(2476), + [anon_sym_i16] = ACTIONS(2476), + [anon_sym_u32] = ACTIONS(2476), + [anon_sym_i32] = ACTIONS(2476), + [anon_sym_u64] = ACTIONS(2476), + [anon_sym_i64] = ACTIONS(2476), + [anon_sym_u128] = ACTIONS(2476), + [anon_sym_i128] = ACTIONS(2476), + [anon_sym_isize] = ACTIONS(2476), + [anon_sym_usize] = ACTIONS(2476), + [anon_sym_f32] = ACTIONS(2476), + [anon_sym_f64] = ACTIONS(2476), + [anon_sym_bool] = ACTIONS(2476), + [anon_sym_str] = ACTIONS(2476), + [anon_sym_char] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_DOT_DOT] = ACTIONS(2474), + [anon_sym_COLON_COLON] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_fn] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_gen] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_impl] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_mod] = ACTIONS(2476), + [anon_sym_pub] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_trait] = ACTIONS(2476), + [anon_sym_type] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_unsafe] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_yield] = ACTIONS(2476), + [anon_sym_move] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [sym_integer_literal] = ACTIONS(2474), + [aux_sym_string_literal_token1] = ACTIONS(2474), + [sym_char_literal] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2476), + [sym_super] = ACTIONS(2476), + [sym_crate] = ACTIONS(2476), + [sym_metavariable] = ACTIONS(2474), + [sym__raw_string_literal_start] = ACTIONS(2474), + [sym_float_literal] = ACTIONS(2474), }, [STATE(641)] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2440), - [sym_identifier] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_macro_rules_BANG] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_u8] = ACTIONS(2442), - [anon_sym_i8] = ACTIONS(2442), - [anon_sym_u16] = ACTIONS(2442), - [anon_sym_i16] = ACTIONS(2442), - [anon_sym_u32] = ACTIONS(2442), - [anon_sym_i32] = ACTIONS(2442), - [anon_sym_u64] = ACTIONS(2442), - [anon_sym_i64] = ACTIONS(2442), - [anon_sym_u128] = ACTIONS(2442), - [anon_sym_i128] = ACTIONS(2442), - [anon_sym_isize] = ACTIONS(2442), - [anon_sym_usize] = ACTIONS(2442), - [anon_sym_f32] = ACTIONS(2442), - [anon_sym_f64] = ACTIONS(2442), - [anon_sym_bool] = ACTIONS(2442), - [anon_sym_str] = ACTIONS(2442), - [anon_sym_char] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_DOT_DOT] = ACTIONS(2440), - [anon_sym_COLON_COLON] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_gen] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_impl] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_mod] = ACTIONS(2442), - [anon_sym_pub] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2442), - [anon_sym_trait] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_union] = ACTIONS(2442), - [anon_sym_unsafe] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_move] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [sym_integer_literal] = ACTIONS(2440), - [aux_sym_string_literal_token1] = ACTIONS(2440), - [sym_char_literal] = ACTIONS(2440), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_crate] = ACTIONS(2442), - [sym_metavariable] = ACTIONS(2440), - [sym__raw_string_literal_start] = ACTIONS(2440), - [sym_float_literal] = ACTIONS(2440), + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_macro_rules_BANG] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_u8] = ACTIONS(2480), + [anon_sym_i8] = ACTIONS(2480), + [anon_sym_u16] = ACTIONS(2480), + [anon_sym_i16] = ACTIONS(2480), + [anon_sym_u32] = ACTIONS(2480), + [anon_sym_i32] = ACTIONS(2480), + [anon_sym_u64] = ACTIONS(2480), + [anon_sym_i64] = ACTIONS(2480), + [anon_sym_u128] = ACTIONS(2480), + [anon_sym_i128] = ACTIONS(2480), + [anon_sym_isize] = ACTIONS(2480), + [anon_sym_usize] = ACTIONS(2480), + [anon_sym_f32] = ACTIONS(2480), + [anon_sym_f64] = ACTIONS(2480), + [anon_sym_bool] = ACTIONS(2480), + [anon_sym_str] = ACTIONS(2480), + [anon_sym_char] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_DOT_DOT] = ACTIONS(2478), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_async] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_fn] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_gen] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_impl] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_mod] = ACTIONS(2480), + [anon_sym_pub] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_trait] = ACTIONS(2480), + [anon_sym_type] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_unsafe] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_yield] = ACTIONS(2480), + [anon_sym_move] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [sym_integer_literal] = ACTIONS(2478), + [aux_sym_string_literal_token1] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2480), + [anon_sym_false] = ACTIONS(2480), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2480), + [sym_super] = ACTIONS(2480), + [sym_crate] = ACTIONS(2480), + [sym_metavariable] = ACTIONS(2478), + [sym__raw_string_literal_start] = ACTIONS(2478), + [sym_float_literal] = ACTIONS(2478), }, [STATE(642)] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_macro_rules_BANG] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2444), - [anon_sym_u8] = ACTIONS(2446), - [anon_sym_i8] = ACTIONS(2446), - [anon_sym_u16] = ACTIONS(2446), - [anon_sym_i16] = ACTIONS(2446), - [anon_sym_u32] = ACTIONS(2446), - [anon_sym_i32] = ACTIONS(2446), - [anon_sym_u64] = ACTIONS(2446), - [anon_sym_i64] = ACTIONS(2446), - [anon_sym_u128] = ACTIONS(2446), - [anon_sym_i128] = ACTIONS(2446), - [anon_sym_isize] = ACTIONS(2446), - [anon_sym_usize] = ACTIONS(2446), - [anon_sym_f32] = ACTIONS(2446), - [anon_sym_f64] = ACTIONS(2446), - [anon_sym_bool] = ACTIONS(2446), - [anon_sym_str] = ACTIONS(2446), - [anon_sym_char] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_DOT_DOT] = ACTIONS(2444), - [anon_sym_COLON_COLON] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - [anon_sym_fn] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_gen] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_impl] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_mod] = ACTIONS(2446), - [anon_sym_pub] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2446), - [anon_sym_trait] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_union] = ACTIONS(2446), - [anon_sym_unsafe] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_move] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2444), - [aux_sym_string_literal_token1] = ACTIONS(2444), - [sym_char_literal] = ACTIONS(2444), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_crate] = ACTIONS(2446), - [sym_metavariable] = ACTIONS(2444), - [sym__raw_string_literal_start] = ACTIONS(2444), - [sym_float_literal] = ACTIONS(2444), + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_macro_rules_BANG] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_DOT_DOT] = ACTIONS(2482), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_async] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [anon_sym_fn] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_gen] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_impl] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_mod] = ACTIONS(2484), + [anon_sym_pub] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_struct] = ACTIONS(2484), + [anon_sym_trait] = ACTIONS(2484), + [anon_sym_type] = ACTIONS(2484), + [anon_sym_union] = ACTIONS(2484), + [anon_sym_unsafe] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_yield] = ACTIONS(2484), + [anon_sym_move] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [sym_integer_literal] = ACTIONS(2482), + [aux_sym_string_literal_token1] = ACTIONS(2482), + [sym_char_literal] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2484), + [sym_super] = ACTIONS(2484), + [sym_crate] = ACTIONS(2484), + [sym_metavariable] = ACTIONS(2482), + [sym__raw_string_literal_start] = ACTIONS(2482), + [sym_float_literal] = ACTIONS(2482), }, [STATE(643)] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_identifier] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_macro_rules_BANG] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_u8] = ACTIONS(2450), - [anon_sym_i8] = ACTIONS(2450), - [anon_sym_u16] = ACTIONS(2450), - [anon_sym_i16] = ACTIONS(2450), - [anon_sym_u32] = ACTIONS(2450), - [anon_sym_i32] = ACTIONS(2450), - [anon_sym_u64] = ACTIONS(2450), - [anon_sym_i64] = ACTIONS(2450), - [anon_sym_u128] = ACTIONS(2450), - [anon_sym_i128] = ACTIONS(2450), - [anon_sym_isize] = ACTIONS(2450), - [anon_sym_usize] = ACTIONS(2450), - [anon_sym_f32] = ACTIONS(2450), - [anon_sym_f64] = ACTIONS(2450), - [anon_sym_bool] = ACTIONS(2450), - [anon_sym_str] = ACTIONS(2450), - [anon_sym_char] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_DOT_DOT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_fn] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_gen] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_impl] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_loop] = ACTIONS(2450), - [anon_sym_match] = ACTIONS(2450), - [anon_sym_mod] = ACTIONS(2450), - [anon_sym_pub] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_trait] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(2450), - [anon_sym_use] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_move] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [sym_integer_literal] = ACTIONS(2448), - [aux_sym_string_literal_token1] = ACTIONS(2448), - [sym_char_literal] = ACTIONS(2448), - [anon_sym_true] = ACTIONS(2450), - [anon_sym_false] = ACTIONS(2450), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_crate] = ACTIONS(2450), - [sym_metavariable] = ACTIONS(2448), - [sym__raw_string_literal_start] = ACTIONS(2448), - [sym_float_literal] = ACTIONS(2448), + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_macro_rules_BANG] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_u8] = ACTIONS(2488), + [anon_sym_i8] = ACTIONS(2488), + [anon_sym_u16] = ACTIONS(2488), + [anon_sym_i16] = ACTIONS(2488), + [anon_sym_u32] = ACTIONS(2488), + [anon_sym_i32] = ACTIONS(2488), + [anon_sym_u64] = ACTIONS(2488), + [anon_sym_i64] = ACTIONS(2488), + [anon_sym_u128] = ACTIONS(2488), + [anon_sym_i128] = ACTIONS(2488), + [anon_sym_isize] = ACTIONS(2488), + [anon_sym_usize] = ACTIONS(2488), + [anon_sym_f32] = ACTIONS(2488), + [anon_sym_f64] = ACTIONS(2488), + [anon_sym_bool] = ACTIONS(2488), + [anon_sym_str] = ACTIONS(2488), + [anon_sym_char] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_DOT_DOT] = ACTIONS(2486), + [anon_sym_COLON_COLON] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_gen] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_impl] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_mod] = ACTIONS(2488), + [anon_sym_pub] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_struct] = ACTIONS(2488), + [anon_sym_trait] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_union] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_move] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2486), + [aux_sym_string_literal_token1] = ACTIONS(2486), + [sym_char_literal] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_crate] = ACTIONS(2488), + [sym_metavariable] = ACTIONS(2486), + [sym__raw_string_literal_start] = ACTIONS(2486), + [sym_float_literal] = ACTIONS(2486), }, [STATE(644)] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_macro_rules_BANG] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_u8] = ACTIONS(2492), + [anon_sym_i8] = ACTIONS(2492), + [anon_sym_u16] = ACTIONS(2492), + [anon_sym_i16] = ACTIONS(2492), + [anon_sym_u32] = ACTIONS(2492), + [anon_sym_i32] = ACTIONS(2492), + [anon_sym_u64] = ACTIONS(2492), + [anon_sym_i64] = ACTIONS(2492), + [anon_sym_u128] = ACTIONS(2492), + [anon_sym_i128] = ACTIONS(2492), + [anon_sym_isize] = ACTIONS(2492), + [anon_sym_usize] = ACTIONS(2492), + [anon_sym_f32] = ACTIONS(2492), + [anon_sym_f64] = ACTIONS(2492), + [anon_sym_bool] = ACTIONS(2492), + [anon_sym_str] = ACTIONS(2492), + [anon_sym_char] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_DOT_DOT] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_fn] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_gen] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_impl] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_mod] = ACTIONS(2492), + [anon_sym_pub] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(2492), + [anon_sym_trait] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_move] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [sym_integer_literal] = ACTIONS(2490), + [aux_sym_string_literal_token1] = ACTIONS(2490), + [sym_char_literal] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_crate] = ACTIONS(2492), + [sym_metavariable] = ACTIONS(2490), + [sym__raw_string_literal_start] = ACTIONS(2490), + [sym_float_literal] = ACTIONS(2490), }, [STATE(645)] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2452), - [sym_identifier] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_macro_rules_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_u8] = ACTIONS(2454), - [anon_sym_i8] = ACTIONS(2454), - [anon_sym_u16] = ACTIONS(2454), - [anon_sym_i16] = ACTIONS(2454), - [anon_sym_u32] = ACTIONS(2454), - [anon_sym_i32] = ACTIONS(2454), - [anon_sym_u64] = ACTIONS(2454), - [anon_sym_i64] = ACTIONS(2454), - [anon_sym_u128] = ACTIONS(2454), - [anon_sym_i128] = ACTIONS(2454), - [anon_sym_isize] = ACTIONS(2454), - [anon_sym_usize] = ACTIONS(2454), - [anon_sym_f32] = ACTIONS(2454), - [anon_sym_f64] = ACTIONS(2454), - [anon_sym_bool] = ACTIONS(2454), - [anon_sym_str] = ACTIONS(2454), - [anon_sym_char] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_DOT_DOT] = ACTIONS(2452), - [anon_sym_COLON_COLON] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_default] = ACTIONS(2454), - [anon_sym_enum] = ACTIONS(2454), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_gen] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_impl] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_mod] = ACTIONS(2454), - [anon_sym_pub] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_struct] = ACTIONS(2454), - [anon_sym_trait] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_union] = ACTIONS(2454), - [anon_sym_unsafe] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_move] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [sym_integer_literal] = ACTIONS(2452), - [aux_sym_string_literal_token1] = ACTIONS(2452), - [sym_char_literal] = ACTIONS(2452), - [anon_sym_true] = ACTIONS(2454), - [anon_sym_false] = ACTIONS(2454), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_crate] = ACTIONS(2454), - [sym_metavariable] = ACTIONS(2452), - [sym__raw_string_literal_start] = ACTIONS(2452), - [sym_float_literal] = ACTIONS(2452), + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_macro_rules_BANG] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_u8] = ACTIONS(2496), + [anon_sym_i8] = ACTIONS(2496), + [anon_sym_u16] = ACTIONS(2496), + [anon_sym_i16] = ACTIONS(2496), + [anon_sym_u32] = ACTIONS(2496), + [anon_sym_i32] = ACTIONS(2496), + [anon_sym_u64] = ACTIONS(2496), + [anon_sym_i64] = ACTIONS(2496), + [anon_sym_u128] = ACTIONS(2496), + [anon_sym_i128] = ACTIONS(2496), + [anon_sym_isize] = ACTIONS(2496), + [anon_sym_usize] = ACTIONS(2496), + [anon_sym_f32] = ACTIONS(2496), + [anon_sym_f64] = ACTIONS(2496), + [anon_sym_bool] = ACTIONS(2496), + [anon_sym_str] = ACTIONS(2496), + [anon_sym_char] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_DOT_DOT] = ACTIONS(2494), + [anon_sym_COLON_COLON] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [anon_sym_fn] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_gen] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_impl] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_mod] = ACTIONS(2496), + [anon_sym_pub] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_struct] = ACTIONS(2496), + [anon_sym_trait] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_union] = ACTIONS(2496), + [anon_sym_unsafe] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_move] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [sym_integer_literal] = ACTIONS(2494), + [aux_sym_string_literal_token1] = ACTIONS(2494), + [sym_char_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_crate] = ACTIONS(2496), + [sym_metavariable] = ACTIONS(2494), + [sym__raw_string_literal_start] = ACTIONS(2494), + [sym_float_literal] = ACTIONS(2494), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(2456), - [sym_identifier] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_macro_rules_BANG] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_u8] = ACTIONS(2458), - [anon_sym_i8] = ACTIONS(2458), - [anon_sym_u16] = ACTIONS(2458), - [anon_sym_i16] = ACTIONS(2458), - [anon_sym_u32] = ACTIONS(2458), - [anon_sym_i32] = ACTIONS(2458), - [anon_sym_u64] = ACTIONS(2458), - [anon_sym_i64] = ACTIONS(2458), - [anon_sym_u128] = ACTIONS(2458), - [anon_sym_i128] = ACTIONS(2458), - [anon_sym_isize] = ACTIONS(2458), - [anon_sym_usize] = ACTIONS(2458), - [anon_sym_f32] = ACTIONS(2458), - [anon_sym_f64] = ACTIONS(2458), - [anon_sym_bool] = ACTIONS(2458), - [anon_sym_str] = ACTIONS(2458), - [anon_sym_char] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_DOT_DOT] = ACTIONS(2456), - [anon_sym_COLON_COLON] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [anon_sym_fn] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_gen] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_impl] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_mod] = ACTIONS(2458), - [anon_sym_pub] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_struct] = ACTIONS(2458), - [anon_sym_trait] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_union] = ACTIONS(2458), - [anon_sym_unsafe] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_move] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [sym_integer_literal] = ACTIONS(2456), - [aux_sym_string_literal_token1] = ACTIONS(2456), - [sym_char_literal] = ACTIONS(2456), - [anon_sym_true] = ACTIONS(2458), - [anon_sym_false] = ACTIONS(2458), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_crate] = ACTIONS(2458), - [sym_metavariable] = ACTIONS(2456), - [sym__raw_string_literal_start] = ACTIONS(2456), - [sym_float_literal] = ACTIONS(2456), + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_macro_rules_BANG] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2498), + [anon_sym_u8] = ACTIONS(2500), + [anon_sym_i8] = ACTIONS(2500), + [anon_sym_u16] = ACTIONS(2500), + [anon_sym_i16] = ACTIONS(2500), + [anon_sym_u32] = ACTIONS(2500), + [anon_sym_i32] = ACTIONS(2500), + [anon_sym_u64] = ACTIONS(2500), + [anon_sym_i64] = ACTIONS(2500), + [anon_sym_u128] = ACTIONS(2500), + [anon_sym_i128] = ACTIONS(2500), + [anon_sym_isize] = ACTIONS(2500), + [anon_sym_usize] = ACTIONS(2500), + [anon_sym_f32] = ACTIONS(2500), + [anon_sym_f64] = ACTIONS(2500), + [anon_sym_bool] = ACTIONS(2500), + [anon_sym_str] = ACTIONS(2500), + [anon_sym_char] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_DOT_DOT] = ACTIONS(2498), + [anon_sym_COLON_COLON] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [anon_sym_fn] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_gen] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_impl] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_mod] = ACTIONS(2500), + [anon_sym_pub] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_struct] = ACTIONS(2500), + [anon_sym_trait] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_union] = ACTIONS(2500), + [anon_sym_unsafe] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_move] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [sym_integer_literal] = ACTIONS(2498), + [aux_sym_string_literal_token1] = ACTIONS(2498), + [sym_char_literal] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2498), + [sym__raw_string_literal_start] = ACTIONS(2498), + [sym_float_literal] = ACTIONS(2498), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [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_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [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_gen] = 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_extern] = ACTIONS(1433), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_macro_rules_BANG] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(2504), + [anon_sym_i8] = ACTIONS(2504), + [anon_sym_u16] = ACTIONS(2504), + [anon_sym_i16] = ACTIONS(2504), + [anon_sym_u32] = ACTIONS(2504), + [anon_sym_i32] = ACTIONS(2504), + [anon_sym_u64] = ACTIONS(2504), + [anon_sym_i64] = ACTIONS(2504), + [anon_sym_u128] = ACTIONS(2504), + [anon_sym_i128] = ACTIONS(2504), + [anon_sym_isize] = ACTIONS(2504), + [anon_sym_usize] = ACTIONS(2504), + [anon_sym_f32] = ACTIONS(2504), + [anon_sym_f64] = ACTIONS(2504), + [anon_sym_bool] = ACTIONS(2504), + [anon_sym_str] = ACTIONS(2504), + [anon_sym_char] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_DOT_DOT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_fn] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_gen] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_impl] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_mod] = ACTIONS(2504), + [anon_sym_pub] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_struct] = ACTIONS(2504), + [anon_sym_trait] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_union] = ACTIONS(2504), + [anon_sym_unsafe] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_move] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [sym_integer_literal] = ACTIONS(2502), + [aux_sym_string_literal_token1] = ACTIONS(2502), + [sym_char_literal] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2502), + [sym__raw_string_literal_start] = ACTIONS(2502), + [sym_float_literal] = ACTIONS(2502), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2460), - [sym_identifier] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_macro_rules_BANG] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_u8] = ACTIONS(2462), - [anon_sym_i8] = ACTIONS(2462), - [anon_sym_u16] = ACTIONS(2462), - [anon_sym_i16] = ACTIONS(2462), - [anon_sym_u32] = ACTIONS(2462), - [anon_sym_i32] = ACTIONS(2462), - [anon_sym_u64] = ACTIONS(2462), - [anon_sym_i64] = ACTIONS(2462), - [anon_sym_u128] = ACTIONS(2462), - [anon_sym_i128] = ACTIONS(2462), - [anon_sym_isize] = ACTIONS(2462), - [anon_sym_usize] = ACTIONS(2462), - [anon_sym_f32] = ACTIONS(2462), - [anon_sym_f64] = ACTIONS(2462), - [anon_sym_bool] = ACTIONS(2462), - [anon_sym_str] = ACTIONS(2462), - [anon_sym_char] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_DOT_DOT] = ACTIONS(2460), - [anon_sym_COLON_COLON] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2462), - [anon_sym_async] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_default] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_fn] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_gen] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_impl] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_mod] = ACTIONS(2462), - [anon_sym_pub] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_struct] = ACTIONS(2462), - [anon_sym_trait] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_union] = ACTIONS(2462), - [anon_sym_unsafe] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_yield] = ACTIONS(2462), - [anon_sym_move] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [sym_integer_literal] = ACTIONS(2460), - [aux_sym_string_literal_token1] = ACTIONS(2460), - [sym_char_literal] = ACTIONS(2460), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2462), - [sym_super] = ACTIONS(2462), - [sym_crate] = ACTIONS(2462), - [sym_metavariable] = ACTIONS(2460), - [sym__raw_string_literal_start] = ACTIONS(2460), - [sym_float_literal] = ACTIONS(2460), + [ts_builtin_sym_end] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2508), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_macro_rules_BANG] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_u8] = ACTIONS(2508), + [anon_sym_i8] = ACTIONS(2508), + [anon_sym_u16] = ACTIONS(2508), + [anon_sym_i16] = ACTIONS(2508), + [anon_sym_u32] = ACTIONS(2508), + [anon_sym_i32] = ACTIONS(2508), + [anon_sym_u64] = ACTIONS(2508), + [anon_sym_i64] = ACTIONS(2508), + [anon_sym_u128] = ACTIONS(2508), + [anon_sym_i128] = ACTIONS(2508), + [anon_sym_isize] = ACTIONS(2508), + [anon_sym_usize] = ACTIONS(2508), + [anon_sym_f32] = ACTIONS(2508), + [anon_sym_f64] = ACTIONS(2508), + [anon_sym_bool] = ACTIONS(2508), + [anon_sym_str] = ACTIONS(2508), + [anon_sym_char] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_DOT_DOT] = ACTIONS(2506), + [anon_sym_COLON_COLON] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_async] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_fn] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_gen] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_impl] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_mod] = ACTIONS(2508), + [anon_sym_pub] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_trait] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_unsafe] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_yield] = ACTIONS(2508), + [anon_sym_move] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [sym_integer_literal] = ACTIONS(2506), + [aux_sym_string_literal_token1] = ACTIONS(2506), + [sym_char_literal] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2508), + [sym_super] = ACTIONS(2508), + [sym_crate] = ACTIONS(2508), + [sym_metavariable] = ACTIONS(2506), + [sym__raw_string_literal_start] = ACTIONS(2506), + [sym_float_literal] = ACTIONS(2506), }, [STATE(649)] = { [sym_line_comment] = STATE(649), @@ -84036,1061 +84041,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1419), }, [STATE(650)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3391), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [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_LBRACK] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [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_gen] = 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_extern] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(651)] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_macro_rules_BANG] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_u8] = ACTIONS(2466), - [anon_sym_i8] = ACTIONS(2466), - [anon_sym_u16] = ACTIONS(2466), - [anon_sym_i16] = ACTIONS(2466), - [anon_sym_u32] = ACTIONS(2466), - [anon_sym_i32] = ACTIONS(2466), - [anon_sym_u64] = ACTIONS(2466), - [anon_sym_i64] = ACTIONS(2466), - [anon_sym_u128] = ACTIONS(2466), - [anon_sym_i128] = ACTIONS(2466), - [anon_sym_isize] = ACTIONS(2466), - [anon_sym_usize] = ACTIONS(2466), - [anon_sym_f32] = ACTIONS(2466), - [anon_sym_f64] = ACTIONS(2466), - [anon_sym_bool] = ACTIONS(2466), - [anon_sym_str] = ACTIONS(2466), - [anon_sym_char] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_fn] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_gen] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_impl] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_mod] = ACTIONS(2466), - [anon_sym_pub] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_trait] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2466), - [anon_sym_unsafe] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_move] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [sym_integer_literal] = ACTIONS(2464), - [aux_sym_string_literal_token1] = ACTIONS(2464), - [sym_char_literal] = ACTIONS(2464), - [anon_sym_true] = ACTIONS(2466), - [anon_sym_false] = ACTIONS(2466), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_crate] = ACTIONS(2466), - [sym_metavariable] = ACTIONS(2464), - [sym__raw_string_literal_start] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2464), - }, - [STATE(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_macro_rules_BANG] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_u8] = ACTIONS(2470), - [anon_sym_i8] = ACTIONS(2470), - [anon_sym_u16] = ACTIONS(2470), - [anon_sym_i16] = ACTIONS(2470), - [anon_sym_u32] = ACTIONS(2470), - [anon_sym_i32] = ACTIONS(2470), - [anon_sym_u64] = ACTIONS(2470), - [anon_sym_i64] = ACTIONS(2470), - [anon_sym_u128] = ACTIONS(2470), - [anon_sym_i128] = ACTIONS(2470), - [anon_sym_isize] = ACTIONS(2470), - [anon_sym_usize] = ACTIONS(2470), - [anon_sym_f32] = ACTIONS(2470), - [anon_sym_f64] = ACTIONS(2470), - [anon_sym_bool] = ACTIONS(2470), - [anon_sym_str] = ACTIONS(2470), - [anon_sym_char] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_DOT_DOT] = ACTIONS(2468), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_fn] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_gen] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_impl] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_mod] = ACTIONS(2470), - [anon_sym_pub] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_struct] = ACTIONS(2470), - [anon_sym_trait] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_union] = ACTIONS(2470), - [anon_sym_unsafe] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_move] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [sym_integer_literal] = ACTIONS(2468), - [aux_sym_string_literal_token1] = ACTIONS(2468), - [sym_char_literal] = ACTIONS(2468), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_crate] = ACTIONS(2470), - [sym_metavariable] = ACTIONS(2468), - [sym__raw_string_literal_start] = ACTIONS(2468), - [sym_float_literal] = ACTIONS(2468), - }, - [STATE(653)] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_macro_rules_BANG] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_u8] = ACTIONS(2474), - [anon_sym_i8] = ACTIONS(2474), - [anon_sym_u16] = ACTIONS(2474), - [anon_sym_i16] = ACTIONS(2474), - [anon_sym_u32] = ACTIONS(2474), - [anon_sym_i32] = ACTIONS(2474), - [anon_sym_u64] = ACTIONS(2474), - [anon_sym_i64] = ACTIONS(2474), - [anon_sym_u128] = ACTIONS(2474), - [anon_sym_i128] = ACTIONS(2474), - [anon_sym_isize] = ACTIONS(2474), - [anon_sym_usize] = ACTIONS(2474), - [anon_sym_f32] = ACTIONS(2474), - [anon_sym_f64] = ACTIONS(2474), - [anon_sym_bool] = ACTIONS(2474), - [anon_sym_str] = ACTIONS(2474), - [anon_sym_char] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_fn] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_gen] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_impl] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_mod] = ACTIONS(2474), - [anon_sym_pub] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_struct] = ACTIONS(2474), - [anon_sym_trait] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_union] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_move] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2472), - [aux_sym_string_literal_token1] = ACTIONS(2472), - [sym_char_literal] = ACTIONS(2472), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_crate] = ACTIONS(2474), - [sym_metavariable] = ACTIONS(2472), - [sym__raw_string_literal_start] = ACTIONS(2472), - [sym_float_literal] = ACTIONS(2472), - }, - [STATE(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_macro_rules_BANG] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_u8] = ACTIONS(2478), - [anon_sym_i8] = ACTIONS(2478), - [anon_sym_u16] = ACTIONS(2478), - [anon_sym_i16] = ACTIONS(2478), - [anon_sym_u32] = ACTIONS(2478), - [anon_sym_i32] = ACTIONS(2478), - [anon_sym_u64] = ACTIONS(2478), - [anon_sym_i64] = ACTIONS(2478), - [anon_sym_u128] = ACTIONS(2478), - [anon_sym_i128] = ACTIONS(2478), - [anon_sym_isize] = ACTIONS(2478), - [anon_sym_usize] = ACTIONS(2478), - [anon_sym_f32] = ACTIONS(2478), - [anon_sym_f64] = ACTIONS(2478), - [anon_sym_bool] = ACTIONS(2478), - [anon_sym_str] = ACTIONS(2478), - [anon_sym_char] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_DOT_DOT] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_fn] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_gen] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_impl] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_mod] = ACTIONS(2478), - [anon_sym_pub] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_trait] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_unsafe] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_move] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [sym_integer_literal] = ACTIONS(2476), - [aux_sym_string_literal_token1] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [anon_sym_true] = ACTIONS(2478), - [anon_sym_false] = ACTIONS(2478), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_crate] = ACTIONS(2478), - [sym_metavariable] = ACTIONS(2476), - [sym__raw_string_literal_start] = ACTIONS(2476), - [sym_float_literal] = ACTIONS(2476), - }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_macro_rules_BANG] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_u8] = ACTIONS(2482), - [anon_sym_i8] = ACTIONS(2482), - [anon_sym_u16] = ACTIONS(2482), - [anon_sym_i16] = ACTIONS(2482), - [anon_sym_u32] = ACTIONS(2482), - [anon_sym_i32] = ACTIONS(2482), - [anon_sym_u64] = ACTIONS(2482), - [anon_sym_i64] = ACTIONS(2482), - [anon_sym_u128] = ACTIONS(2482), - [anon_sym_i128] = ACTIONS(2482), - [anon_sym_isize] = ACTIONS(2482), - [anon_sym_usize] = ACTIONS(2482), - [anon_sym_f32] = ACTIONS(2482), - [anon_sym_f64] = ACTIONS(2482), - [anon_sym_bool] = ACTIONS(2482), - [anon_sym_str] = ACTIONS(2482), - [anon_sym_char] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_DOT_DOT] = ACTIONS(2480), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_default] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_fn] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_gen] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_impl] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_mod] = ACTIONS(2482), - [anon_sym_pub] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_trait] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_unsafe] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_yield] = ACTIONS(2482), - [anon_sym_move] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [sym_integer_literal] = ACTIONS(2480), - [aux_sym_string_literal_token1] = ACTIONS(2480), - [sym_char_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2482), - [anon_sym_false] = ACTIONS(2482), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2482), - [sym_super] = ACTIONS(2482), - [sym_crate] = ACTIONS(2482), - [sym_metavariable] = ACTIONS(2480), - [sym__raw_string_literal_start] = ACTIONS(2480), - [sym_float_literal] = ACTIONS(2480), - }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2484), - [sym_identifier] = ACTIONS(2486), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_macro_rules_BANG] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2484), - [anon_sym_u8] = ACTIONS(2486), - [anon_sym_i8] = ACTIONS(2486), - [anon_sym_u16] = ACTIONS(2486), - [anon_sym_i16] = ACTIONS(2486), - [anon_sym_u32] = ACTIONS(2486), - [anon_sym_i32] = ACTIONS(2486), - [anon_sym_u64] = ACTIONS(2486), - [anon_sym_i64] = ACTIONS(2486), - [anon_sym_u128] = ACTIONS(2486), - [anon_sym_i128] = ACTIONS(2486), - [anon_sym_isize] = ACTIONS(2486), - [anon_sym_usize] = ACTIONS(2486), - [anon_sym_f32] = ACTIONS(2486), - [anon_sym_f64] = ACTIONS(2486), - [anon_sym_bool] = ACTIONS(2486), - [anon_sym_str] = ACTIONS(2486), - [anon_sym_char] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_BANG] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_DOT_DOT] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_enum] = ACTIONS(2486), - [anon_sym_fn] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_gen] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_impl] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_mod] = ACTIONS(2486), - [anon_sym_pub] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_struct] = ACTIONS(2486), - [anon_sym_trait] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_union] = ACTIONS(2486), - [anon_sym_unsafe] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_yield] = ACTIONS(2486), - [anon_sym_move] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [sym_integer_literal] = ACTIONS(2484), - [aux_sym_string_literal_token1] = ACTIONS(2484), - [sym_char_literal] = ACTIONS(2484), - [anon_sym_true] = ACTIONS(2486), - [anon_sym_false] = ACTIONS(2486), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2486), - [sym_super] = ACTIONS(2486), - [sym_crate] = ACTIONS(2486), - [sym_metavariable] = ACTIONS(2484), - [sym__raw_string_literal_start] = ACTIONS(2484), - [sym_float_literal] = ACTIONS(2484), - }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2488), - [sym_identifier] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_macro_rules_BANG] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2488), - [anon_sym_u8] = ACTIONS(2490), - [anon_sym_i8] = ACTIONS(2490), - [anon_sym_u16] = ACTIONS(2490), - [anon_sym_i16] = ACTIONS(2490), - [anon_sym_u32] = ACTIONS(2490), - [anon_sym_i32] = ACTIONS(2490), - [anon_sym_u64] = ACTIONS(2490), - [anon_sym_i64] = ACTIONS(2490), - [anon_sym_u128] = ACTIONS(2490), - [anon_sym_i128] = ACTIONS(2490), - [anon_sym_isize] = ACTIONS(2490), - [anon_sym_usize] = ACTIONS(2490), - [anon_sym_f32] = ACTIONS(2490), - [anon_sym_f64] = ACTIONS(2490), - [anon_sym_bool] = ACTIONS(2490), - [anon_sym_str] = ACTIONS(2490), - [anon_sym_char] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_DOT_DOT] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_default] = ACTIONS(2490), - [anon_sym_enum] = ACTIONS(2490), - [anon_sym_fn] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_gen] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_impl] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_mod] = ACTIONS(2490), - [anon_sym_pub] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_struct] = ACTIONS(2490), - [anon_sym_trait] = ACTIONS(2490), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_union] = ACTIONS(2490), - [anon_sym_unsafe] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_yield] = ACTIONS(2490), - [anon_sym_move] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [sym_integer_literal] = ACTIONS(2488), - [aux_sym_string_literal_token1] = ACTIONS(2488), - [sym_char_literal] = ACTIONS(2488), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2490), - [sym_super] = ACTIONS(2490), - [sym_crate] = ACTIONS(2490), - [sym_metavariable] = ACTIONS(2488), - [sym__raw_string_literal_start] = ACTIONS(2488), - [sym_float_literal] = ACTIONS(2488), - }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_macro_rules_BANG] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_DOT_DOT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - [anon_sym_fn] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_gen] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_impl] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_mod] = ACTIONS(2494), - [anon_sym_pub] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_struct] = ACTIONS(2494), - [anon_sym_trait] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_union] = ACTIONS(2494), - [anon_sym_unsafe] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_move] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [sym_integer_literal] = ACTIONS(2492), - [aux_sym_string_literal_token1] = ACTIONS(2492), - [sym_char_literal] = ACTIONS(2492), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2492), - [sym__raw_string_literal_start] = ACTIONS(2492), - [sym_float_literal] = ACTIONS(2492), - }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_macro_rules_BANG] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_u8] = ACTIONS(2498), - [anon_sym_i8] = ACTIONS(2498), - [anon_sym_u16] = ACTIONS(2498), - [anon_sym_i16] = ACTIONS(2498), - [anon_sym_u32] = ACTIONS(2498), - [anon_sym_i32] = ACTIONS(2498), - [anon_sym_u64] = ACTIONS(2498), - [anon_sym_i64] = ACTIONS(2498), - [anon_sym_u128] = ACTIONS(2498), - [anon_sym_i128] = ACTIONS(2498), - [anon_sym_isize] = ACTIONS(2498), - [anon_sym_usize] = ACTIONS(2498), - [anon_sym_f32] = ACTIONS(2498), - [anon_sym_f64] = ACTIONS(2498), - [anon_sym_bool] = ACTIONS(2498), - [anon_sym_str] = ACTIONS(2498), - [anon_sym_char] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_DOT_DOT] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_gen] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_impl] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_mod] = ACTIONS(2498), - [anon_sym_pub] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_struct] = ACTIONS(2498), - [anon_sym_trait] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_union] = ACTIONS(2498), - [anon_sym_unsafe] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_move] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [sym_integer_literal] = ACTIONS(2496), - [aux_sym_string_literal_token1] = ACTIONS(2496), - [sym_char_literal] = ACTIONS(2496), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_crate] = ACTIONS(2498), - [sym_metavariable] = ACTIONS(2496), - [sym__raw_string_literal_start] = ACTIONS(2496), - [sym_float_literal] = ACTIONS(2496), - }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_macro_rules_BANG] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2500), - [anon_sym_u8] = ACTIONS(2502), - [anon_sym_i8] = ACTIONS(2502), - [anon_sym_u16] = ACTIONS(2502), - [anon_sym_i16] = ACTIONS(2502), - [anon_sym_u32] = ACTIONS(2502), - [anon_sym_i32] = ACTIONS(2502), - [anon_sym_u64] = ACTIONS(2502), - [anon_sym_i64] = ACTIONS(2502), - [anon_sym_u128] = ACTIONS(2502), - [anon_sym_i128] = ACTIONS(2502), - [anon_sym_isize] = ACTIONS(2502), - [anon_sym_usize] = ACTIONS(2502), - [anon_sym_f32] = ACTIONS(2502), - [anon_sym_f64] = ACTIONS(2502), - [anon_sym_bool] = ACTIONS(2502), - [anon_sym_str] = ACTIONS(2502), - [anon_sym_char] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_DOT_DOT] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_default] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - [anon_sym_fn] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_gen] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_impl] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), - [anon_sym_mod] = ACTIONS(2502), - [anon_sym_pub] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_struct] = ACTIONS(2502), - [anon_sym_trait] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_move] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [sym_integer_literal] = ACTIONS(2500), - [aux_sym_string_literal_token1] = ACTIONS(2500), - [sym_char_literal] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_crate] = ACTIONS(2502), - [sym_metavariable] = ACTIONS(2500), - [sym__raw_string_literal_start] = ACTIONS(2500), - [sym_float_literal] = ACTIONS(2500), - }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_macro_rules_BANG] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2504), - [anon_sym_u8] = ACTIONS(2506), - [anon_sym_i8] = ACTIONS(2506), - [anon_sym_u16] = ACTIONS(2506), - [anon_sym_i16] = ACTIONS(2506), - [anon_sym_u32] = ACTIONS(2506), - [anon_sym_i32] = ACTIONS(2506), - [anon_sym_u64] = ACTIONS(2506), - [anon_sym_i64] = ACTIONS(2506), - [anon_sym_u128] = ACTIONS(2506), - [anon_sym_i128] = ACTIONS(2506), - [anon_sym_isize] = ACTIONS(2506), - [anon_sym_usize] = ACTIONS(2506), - [anon_sym_f32] = ACTIONS(2506), - [anon_sym_f64] = ACTIONS(2506), - [anon_sym_bool] = ACTIONS(2506), - [anon_sym_str] = ACTIONS(2506), - [anon_sym_char] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_DOT_DOT] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2504), - [anon_sym_POUND] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [anon_sym_fn] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_gen] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_impl] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), - [anon_sym_mod] = ACTIONS(2506), - [anon_sym_pub] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_trait] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_union] = ACTIONS(2506), - [anon_sym_unsafe] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_move] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [sym_integer_literal] = ACTIONS(2504), - [aux_sym_string_literal_token1] = ACTIONS(2504), - [sym_char_literal] = ACTIONS(2504), - [anon_sym_true] = ACTIONS(2506), - [anon_sym_false] = ACTIONS(2506), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_crate] = ACTIONS(2506), - [sym_metavariable] = ACTIONS(2504), - [sym__raw_string_literal_start] = ACTIONS(2504), - [sym_float_literal] = ACTIONS(2504), - }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_macro_rules_BANG] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_u8] = ACTIONS(2510), - [anon_sym_i8] = ACTIONS(2510), - [anon_sym_u16] = ACTIONS(2510), - [anon_sym_i16] = ACTIONS(2510), - [anon_sym_u32] = ACTIONS(2510), - [anon_sym_i32] = ACTIONS(2510), - [anon_sym_u64] = ACTIONS(2510), - [anon_sym_i64] = ACTIONS(2510), - [anon_sym_u128] = ACTIONS(2510), - [anon_sym_i128] = ACTIONS(2510), - [anon_sym_isize] = ACTIONS(2510), - [anon_sym_usize] = ACTIONS(2510), - [anon_sym_f32] = ACTIONS(2510), - [anon_sym_f64] = ACTIONS(2510), - [anon_sym_bool] = ACTIONS(2510), - [anon_sym_str] = ACTIONS(2510), - [anon_sym_char] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_DOT_DOT] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_fn] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_gen] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_impl] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), - [anon_sym_mod] = ACTIONS(2510), - [anon_sym_pub] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_trait] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_unsafe] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_move] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [sym_integer_literal] = ACTIONS(2508), - [aux_sym_string_literal_token1] = ACTIONS(2508), - [sym_char_literal] = ACTIONS(2508), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_crate] = ACTIONS(2510), - [sym_metavariable] = ACTIONS(2508), - [sym__raw_string_literal_start] = ACTIONS(2508), - [sym_float_literal] = ACTIONS(2508), - }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_SEMI] = ACTIONS(2512), @@ -85169,423 +84202,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2512), [sym_float_literal] = ACTIONS(2512), }, - [STATE(664)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_macro_rules_BANG] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2516), [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_u8] = ACTIONS(2518), + [anon_sym_i8] = ACTIONS(2518), + [anon_sym_u16] = ACTIONS(2518), + [anon_sym_i16] = ACTIONS(2518), + [anon_sym_u32] = ACTIONS(2518), + [anon_sym_i32] = ACTIONS(2518), + [anon_sym_u64] = ACTIONS(2518), + [anon_sym_i64] = ACTIONS(2518), + [anon_sym_u128] = ACTIONS(2518), + [anon_sym_i128] = ACTIONS(2518), + [anon_sym_isize] = ACTIONS(2518), + [anon_sym_usize] = ACTIONS(2518), + [anon_sym_f32] = ACTIONS(2518), + [anon_sym_f64] = ACTIONS(2518), + [anon_sym_bool] = ACTIONS(2518), + [anon_sym_str] = ACTIONS(2518), + [anon_sym_char] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_COLON_COLON] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_default] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [anon_sym_fn] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_gen] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_mod] = ACTIONS(2518), + [anon_sym_pub] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_struct] = ACTIONS(2518), + [anon_sym_trait] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_union] = ACTIONS(2518), + [anon_sym_unsafe] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_move] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [sym_integer_literal] = ACTIONS(2516), + [aux_sym_string_literal_token1] = ACTIONS(2516), + [sym_char_literal] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2518), + [anon_sym_false] = ACTIONS(2518), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_crate] = ACTIONS(2518), + [sym_metavariable] = ACTIONS(2516), + [sym__raw_string_literal_start] = ACTIONS(2516), + [sym_float_literal] = ACTIONS(2516), + }, + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [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_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [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_gen] = 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_extern] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_try] = 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), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_gen] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_u8] = ACTIONS(2522), + [anon_sym_i8] = ACTIONS(2522), + [anon_sym_u16] = ACTIONS(2522), + [anon_sym_i16] = ACTIONS(2522), + [anon_sym_u32] = ACTIONS(2522), + [anon_sym_i32] = ACTIONS(2522), + [anon_sym_u64] = ACTIONS(2522), + [anon_sym_i64] = ACTIONS(2522), + [anon_sym_u128] = ACTIONS(2522), + [anon_sym_i128] = ACTIONS(2522), + [anon_sym_isize] = ACTIONS(2522), + [anon_sym_usize] = ACTIONS(2522), + [anon_sym_f32] = ACTIONS(2522), + [anon_sym_f64] = ACTIONS(2522), + [anon_sym_bool] = ACTIONS(2522), + [anon_sym_str] = ACTIONS(2522), + [anon_sym_char] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_gen] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_impl] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_loop] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_mod] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_trait] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_use] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_extern] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_move] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [sym_integer_literal] = ACTIONS(2520), + [aux_sym_string_literal_token1] = ACTIONS(2520), + [sym_char_literal] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_crate] = ACTIONS(2522), + [sym_metavariable] = ACTIONS(2520), + [sym__raw_string_literal_start] = ACTIONS(2520), + [sym_float_literal] = ACTIONS(2520), }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_gen] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_macro_rules_BANG] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_u8] = ACTIONS(2526), + [anon_sym_i8] = ACTIONS(2526), + [anon_sym_u16] = ACTIONS(2526), + [anon_sym_i16] = ACTIONS(2526), + [anon_sym_u32] = ACTIONS(2526), + [anon_sym_i32] = ACTIONS(2526), + [anon_sym_u64] = ACTIONS(2526), + [anon_sym_i64] = ACTIONS(2526), + [anon_sym_u128] = ACTIONS(2526), + [anon_sym_i128] = ACTIONS(2526), + [anon_sym_isize] = ACTIONS(2526), + [anon_sym_usize] = ACTIONS(2526), + [anon_sym_f32] = ACTIONS(2526), + [anon_sym_f64] = ACTIONS(2526), + [anon_sym_bool] = ACTIONS(2526), + [anon_sym_str] = ACTIONS(2526), + [anon_sym_char] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2524), + [anon_sym_COLON_COLON] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_gen] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_impl] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_loop] = ACTIONS(2526), + [anon_sym_match] = ACTIONS(2526), + [anon_sym_mod] = ACTIONS(2526), + [anon_sym_pub] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_struct] = ACTIONS(2526), + [anon_sym_trait] = ACTIONS(2526), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_union] = ACTIONS(2526), + [anon_sym_unsafe] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_extern] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_move] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [sym_integer_literal] = ACTIONS(2524), + [aux_sym_string_literal_token1] = ACTIONS(2524), + [sym_char_literal] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2526), + [anon_sym_false] = ACTIONS(2526), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_crate] = ACTIONS(2526), + [sym_metavariable] = ACTIONS(2524), + [sym__raw_string_literal_start] = ACTIONS(2524), + [sym_float_literal] = ACTIONS(2524), }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2526), + [STATE(656)] = { + [sym_empty_statement] = STATE(1305), + [sym_macro_definition] = STATE(1305), + [sym_attribute_item] = STATE(1305), + [sym_inner_attribute_item] = STATE(1305), + [sym_mod_item] = STATE(1305), + [sym_foreign_mod_item] = STATE(1305), + [sym_struct_item] = STATE(1305), + [sym_union_item] = STATE(1305), + [sym_enum_item] = STATE(1305), + [sym_extern_crate_declaration] = STATE(1305), + [sym_const_item] = STATE(1305), + [sym_static_item] = STATE(1305), + [sym_type_item] = STATE(1305), + [sym_function_item] = STATE(1305), + [sym_function_signature_item] = STATE(1305), + [sym_function_modifiers] = STATE(3747), + [sym_impl_item] = STATE(1305), + [sym_trait_item] = STATE(1305), + [sym_associated_type] = STATE(1305), + [sym_let_declaration] = STATE(1305), + [sym_use_declaration] = STATE(1305), + [sym_extern_modifier] = STATE(2250), + [sym_visibility_modifier] = STATE(2009), + [sym_bracketed_type] = STATE(3696), + [sym_generic_type_with_turbofish] = STATE(3770), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(3191), + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [aux_sym_declaration_list_repeat1] = STATE(748), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_macro_rules_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2528), - [anon_sym_i8] = ACTIONS(2528), - [anon_sym_u16] = ACTIONS(2528), - [anon_sym_i16] = ACTIONS(2528), - [anon_sym_u32] = ACTIONS(2528), - [anon_sym_i32] = ACTIONS(2528), - [anon_sym_u64] = ACTIONS(2528), - [anon_sym_i64] = ACTIONS(2528), - [anon_sym_u128] = ACTIONS(2528), - [anon_sym_i128] = ACTIONS(2528), - [anon_sym_isize] = ACTIONS(2528), - [anon_sym_usize] = ACTIONS(2528), - [anon_sym_f32] = ACTIONS(2528), - [anon_sym_f64] = ACTIONS(2528), - [anon_sym_bool] = ACTIONS(2528), - [anon_sym_str] = ACTIONS(2528), - [anon_sym_char] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_fn] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_gen] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_impl] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_mod] = ACTIONS(2528), - [anon_sym_pub] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_struct] = ACTIONS(2528), - [anon_sym_trait] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_union] = ACTIONS(2528), - [anon_sym_unsafe] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_move] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [sym_integer_literal] = ACTIONS(2526), - [aux_sym_string_literal_token1] = ACTIONS(2526), - [sym_char_literal] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_crate] = ACTIONS(2528), - [sym_metavariable] = ACTIONS(2526), - [sym__raw_string_literal_start] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(2526), - }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_u8] = ACTIONS(2532), - [anon_sym_i8] = ACTIONS(2532), - [anon_sym_u16] = ACTIONS(2532), - [anon_sym_i16] = ACTIONS(2532), - [anon_sym_u32] = ACTIONS(2532), - [anon_sym_i32] = ACTIONS(2532), - [anon_sym_u64] = ACTIONS(2532), - [anon_sym_i64] = ACTIONS(2532), - [anon_sym_u128] = ACTIONS(2532), - [anon_sym_i128] = ACTIONS(2532), - [anon_sym_isize] = ACTIONS(2532), - [anon_sym_usize] = ACTIONS(2532), - [anon_sym_f32] = ACTIONS(2532), - [anon_sym_f64] = ACTIONS(2532), - [anon_sym_bool] = ACTIONS(2532), - [anon_sym_str] = ACTIONS(2532), - [anon_sym_char] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_async] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_default] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_gen] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_impl] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_mod] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_trait] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(2532), - [anon_sym_move] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [sym_integer_literal] = ACTIONS(2530), - [aux_sym_string_literal_token1] = ACTIONS(2530), - [sym_char_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2532), - [sym_super] = ACTIONS(2532), - [sym_crate] = ACTIONS(2532), - [sym_metavariable] = ACTIONS(2530), - [sym__raw_string_literal_start] = ACTIONS(2530), - [sym_float_literal] = ACTIONS(2530), - }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_macro_rules_BANG] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2534), [anon_sym_u8] = ACTIONS(2536), [anon_sym_i8] = ACTIONS(2536), [anon_sym_u16] = ACTIONS(2536), @@ -85603,1438 +84579,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2536), [anon_sym_str] = ACTIONS(2536), [anon_sym_char] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2534), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_fn] = ACTIONS(2536), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_gen] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_impl] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2536), - [anon_sym_loop] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_mod] = ACTIONS(2536), - [anon_sym_pub] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2536), - [anon_sym_trait] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_union] = ACTIONS(2536), - [anon_sym_unsafe] = ACTIONS(2536), - [anon_sym_use] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_yield] = ACTIONS(2536), - [anon_sym_move] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [sym_integer_literal] = ACTIONS(2534), - [aux_sym_string_literal_token1] = ACTIONS(2534), - [sym_char_literal] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2536), - [sym_super] = ACTIONS(2536), - [sym_crate] = ACTIONS(2536), - [sym_metavariable] = ACTIONS(2534), - [sym__raw_string_literal_start] = ACTIONS(2534), - [sym_float_literal] = ACTIONS(2534), - }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_u8] = ACTIONS(2540), - [anon_sym_i8] = ACTIONS(2540), - [anon_sym_u16] = ACTIONS(2540), - [anon_sym_i16] = ACTIONS(2540), - [anon_sym_u32] = ACTIONS(2540), - [anon_sym_i32] = ACTIONS(2540), - [anon_sym_u64] = ACTIONS(2540), - [anon_sym_i64] = ACTIONS(2540), - [anon_sym_u128] = ACTIONS(2540), - [anon_sym_i128] = ACTIONS(2540), - [anon_sym_isize] = ACTIONS(2540), - [anon_sym_usize] = ACTIONS(2540), - [anon_sym_f32] = ACTIONS(2540), - [anon_sym_f64] = ACTIONS(2540), - [anon_sym_bool] = ACTIONS(2540), - [anon_sym_str] = ACTIONS(2540), - [anon_sym_char] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_fn] = ACTIONS(2540), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_gen] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_impl] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2540), - [anon_sym_loop] = ACTIONS(2540), - [anon_sym_match] = ACTIONS(2540), - [anon_sym_mod] = ACTIONS(2540), - [anon_sym_pub] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2540), - [anon_sym_trait] = ACTIONS(2540), - [anon_sym_type] = ACTIONS(2540), - [anon_sym_union] = ACTIONS(2540), - [anon_sym_unsafe] = ACTIONS(2540), - [anon_sym_use] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_yield] = ACTIONS(2540), - [anon_sym_move] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [sym_integer_literal] = ACTIONS(2538), - [aux_sym_string_literal_token1] = ACTIONS(2538), - [sym_char_literal] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2540), - [sym_super] = ACTIONS(2540), - [sym_crate] = ACTIONS(2540), - [sym_metavariable] = ACTIONS(2538), - [sym__raw_string_literal_start] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_macro_rules_BANG] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_u8] = ACTIONS(2544), - [anon_sym_i8] = ACTIONS(2544), - [anon_sym_u16] = ACTIONS(2544), - [anon_sym_i16] = ACTIONS(2544), - [anon_sym_u32] = ACTIONS(2544), - [anon_sym_i32] = ACTIONS(2544), - [anon_sym_u64] = ACTIONS(2544), - [anon_sym_i64] = ACTIONS(2544), - [anon_sym_u128] = ACTIONS(2544), - [anon_sym_i128] = ACTIONS(2544), - [anon_sym_isize] = ACTIONS(2544), - [anon_sym_usize] = ACTIONS(2544), - [anon_sym_f32] = ACTIONS(2544), - [anon_sym_f64] = ACTIONS(2544), - [anon_sym_bool] = ACTIONS(2544), - [anon_sym_str] = ACTIONS(2544), - [anon_sym_char] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_const] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(2542), [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_fn] = ACTIONS(2544), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_gen] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_impl] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2544), - [anon_sym_loop] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_mod] = ACTIONS(2544), - [anon_sym_pub] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2544), - [anon_sym_trait] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_union] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(2544), - [anon_sym_use] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_yield] = ACTIONS(2544), - [anon_sym_move] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [sym_integer_literal] = ACTIONS(2542), - [aux_sym_string_literal_token1] = ACTIONS(2542), - [sym_char_literal] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2544), - [sym_super] = ACTIONS(2544), - [sym_crate] = ACTIONS(2544), - [sym_metavariable] = ACTIONS(2542), - [sym__raw_string_literal_start] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), - }, - [STATE(672)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [aux_sym_declaration_list_repeat1] = STATE(676), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2548), - [sym_identifier] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2548), - [anon_sym_u8] = ACTIONS(2550), - [anon_sym_i8] = ACTIONS(2550), - [anon_sym_u16] = ACTIONS(2550), - [anon_sym_i16] = ACTIONS(2550), - [anon_sym_u32] = ACTIONS(2550), - [anon_sym_i32] = ACTIONS(2550), - [anon_sym_u64] = ACTIONS(2550), - [anon_sym_i64] = ACTIONS(2550), - [anon_sym_u128] = ACTIONS(2550), - [anon_sym_i128] = ACTIONS(2550), - [anon_sym_isize] = ACTIONS(2550), - [anon_sym_usize] = ACTIONS(2550), - [anon_sym_f32] = ACTIONS(2550), - [anon_sym_f64] = ACTIONS(2550), - [anon_sym_bool] = ACTIONS(2550), - [anon_sym_str] = ACTIONS(2550), - [anon_sym_char] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2550), - [anon_sym_async] = ACTIONS(2550), - [anon_sym_break] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2550), - [anon_sym_continue] = ACTIONS(2550), - [anon_sym_default] = ACTIONS(2550), - [anon_sym_enum] = ACTIONS(2550), - [anon_sym_fn] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2550), + [anon_sym_enum] = ACTIONS(2546), + [anon_sym_fn] = ACTIONS(2548), [anon_sym_gen] = ACTIONS(2550), - [anon_sym_if] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_loop] = ACTIONS(2550), - [anon_sym_match] = ACTIONS(2550), - [anon_sym_mod] = ACTIONS(2550), - [anon_sym_pub] = ACTIONS(2550), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(2550), - [anon_sym_trait] = ACTIONS(2550), - [anon_sym_type] = ACTIONS(2550), - [anon_sym_union] = ACTIONS(2550), - [anon_sym_unsafe] = ACTIONS(2550), - [anon_sym_use] = ACTIONS(2550), - [anon_sym_while] = ACTIONS(2550), - [anon_sym_extern] = ACTIONS(2550), - [anon_sym_yield] = ACTIONS(2550), - [anon_sym_move] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2550), - [sym_integer_literal] = ACTIONS(2548), - [aux_sym_string_literal_token1] = ACTIONS(2548), - [sym_char_literal] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2550), - [sym_super] = ACTIONS(2550), - [sym_crate] = ACTIONS(2550), - [sym_metavariable] = ACTIONS(2548), - [sym__raw_string_literal_start] = ACTIONS(2548), - [sym_float_literal] = ACTIONS(2548), - }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_identifier] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_macro_rules_BANG] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2552), - [anon_sym_u8] = ACTIONS(2554), - [anon_sym_i8] = ACTIONS(2554), - [anon_sym_u16] = ACTIONS(2554), - [anon_sym_i16] = ACTIONS(2554), - [anon_sym_u32] = ACTIONS(2554), - [anon_sym_i32] = ACTIONS(2554), - [anon_sym_u64] = ACTIONS(2554), - [anon_sym_i64] = ACTIONS(2554), - [anon_sym_u128] = ACTIONS(2554), - [anon_sym_i128] = ACTIONS(2554), - [anon_sym_isize] = ACTIONS(2554), - [anon_sym_usize] = ACTIONS(2554), - [anon_sym_f32] = ACTIONS(2554), - [anon_sym_f64] = ACTIONS(2554), - [anon_sym_bool] = ACTIONS(2554), - [anon_sym_str] = ACTIONS(2554), - [anon_sym_char] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_DOT_DOT] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), - [anon_sym_fn] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_gen] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_impl] = ACTIONS(2554), + [anon_sym_impl] = ACTIONS(2552), [anon_sym_let] = ACTIONS(2554), - [anon_sym_loop] = ACTIONS(2554), - [anon_sym_match] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2554), - [anon_sym_pub] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_struct] = ACTIONS(2554), - [anon_sym_trait] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), - [anon_sym_union] = ACTIONS(2554), - [anon_sym_unsafe] = ACTIONS(2554), - [anon_sym_use] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_extern] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_move] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [sym_integer_literal] = ACTIONS(2552), - [aux_sym_string_literal_token1] = ACTIONS(2552), - [sym_char_literal] = ACTIONS(2552), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_crate] = ACTIONS(2554), - [sym_metavariable] = ACTIONS(2552), - [sym__raw_string_literal_start] = ACTIONS(2552), - [sym_float_literal] = ACTIONS(2552), - }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2556), - [sym_identifier] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_macro_rules_BANG] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_u8] = ACTIONS(2558), - [anon_sym_i8] = ACTIONS(2558), - [anon_sym_u16] = ACTIONS(2558), - [anon_sym_i16] = ACTIONS(2558), - [anon_sym_u32] = ACTIONS(2558), - [anon_sym_i32] = ACTIONS(2558), - [anon_sym_u64] = ACTIONS(2558), - [anon_sym_i64] = ACTIONS(2558), - [anon_sym_u128] = ACTIONS(2558), - [anon_sym_i128] = ACTIONS(2558), - [anon_sym_isize] = ACTIONS(2558), - [anon_sym_usize] = ACTIONS(2558), - [anon_sym_f32] = ACTIONS(2558), - [anon_sym_f64] = ACTIONS(2558), - [anon_sym_bool] = ACTIONS(2558), - [anon_sym_str] = ACTIONS(2558), - [anon_sym_char] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_DOT_DOT] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - [anon_sym_fn] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_gen] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_impl] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_loop] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_mod] = ACTIONS(2558), - [anon_sym_pub] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2558), - [anon_sym_trait] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_union] = ACTIONS(2558), - [anon_sym_unsafe] = ACTIONS(2558), - [anon_sym_use] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_extern] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_move] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [sym_integer_literal] = ACTIONS(2556), - [aux_sym_string_literal_token1] = ACTIONS(2556), - [sym_char_literal] = ACTIONS(2556), - [anon_sym_true] = ACTIONS(2558), - [anon_sym_false] = ACTIONS(2558), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_crate] = ACTIONS(2558), - [sym_metavariable] = ACTIONS(2556), - [sym__raw_string_literal_start] = ACTIONS(2556), - [sym_float_literal] = ACTIONS(2556), - }, - [STATE(676)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), + [anon_sym_mod] = ACTIONS(2556), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2562), - [sym_identifier] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_macro_rules_BANG] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_u8] = ACTIONS(2564), - [anon_sym_i8] = ACTIONS(2564), - [anon_sym_u16] = ACTIONS(2564), - [anon_sym_i16] = ACTIONS(2564), - [anon_sym_u32] = ACTIONS(2564), - [anon_sym_i32] = ACTIONS(2564), - [anon_sym_u64] = ACTIONS(2564), - [anon_sym_i64] = ACTIONS(2564), - [anon_sym_u128] = ACTIONS(2564), - [anon_sym_i128] = ACTIONS(2564), - [anon_sym_isize] = ACTIONS(2564), - [anon_sym_usize] = ACTIONS(2564), - [anon_sym_f32] = ACTIONS(2564), - [anon_sym_f64] = ACTIONS(2564), - [anon_sym_bool] = ACTIONS(2564), - [anon_sym_str] = ACTIONS(2564), - [anon_sym_char] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_async] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_impl] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2564), - [anon_sym_loop] = ACTIONS(2564), - [anon_sym_match] = ACTIONS(2564), - [anon_sym_mod] = ACTIONS(2564), - [anon_sym_pub] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_trait] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2562), [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2564), - [anon_sym_use] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_yield] = ACTIONS(2564), - [anon_sym_move] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2564), - [sym_integer_literal] = ACTIONS(2562), - [aux_sym_string_literal_token1] = ACTIONS(2562), - [sym_char_literal] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2564), - [sym_super] = ACTIONS(2564), - [sym_crate] = ACTIONS(2564), - [sym_metavariable] = ACTIONS(2562), - [sym__raw_string_literal_start] = ACTIONS(2562), - [sym_float_literal] = ACTIONS(2562), - }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2566), - [sym_identifier] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_macro_rules_BANG] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_u8] = ACTIONS(2568), - [anon_sym_i8] = ACTIONS(2568), - [anon_sym_u16] = ACTIONS(2568), - [anon_sym_i16] = ACTIONS(2568), - [anon_sym_u32] = ACTIONS(2568), - [anon_sym_i32] = ACTIONS(2568), - [anon_sym_u64] = ACTIONS(2568), - [anon_sym_i64] = ACTIONS(2568), - [anon_sym_u128] = ACTIONS(2568), - [anon_sym_i128] = ACTIONS(2568), - [anon_sym_isize] = ACTIONS(2568), - [anon_sym_usize] = ACTIONS(2568), - [anon_sym_f32] = ACTIONS(2568), - [anon_sym_f64] = ACTIONS(2568), - [anon_sym_bool] = ACTIONS(2568), - [anon_sym_str] = ACTIONS(2568), - [anon_sym_char] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_DOT_DOT] = ACTIONS(2566), - [anon_sym_COLON_COLON] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2568), - [anon_sym_async] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_fn] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_gen] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2568), - [anon_sym_loop] = ACTIONS(2568), - [anon_sym_match] = ACTIONS(2568), - [anon_sym_mod] = ACTIONS(2568), - [anon_sym_pub] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_trait] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2566), [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_yield] = ACTIONS(2568), - [anon_sym_move] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [sym_integer_literal] = ACTIONS(2566), - [aux_sym_string_literal_token1] = ACTIONS(2566), - [sym_char_literal] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2568), - [sym_super] = ACTIONS(2568), - [sym_crate] = ACTIONS(2568), - [sym_metavariable] = ACTIONS(2566), - [sym__raw_string_literal_start] = ACTIONS(2566), - [sym_float_literal] = ACTIONS(2566), - }, - [STATE(679)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2578), }, - [STATE(680)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [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_LBRACK] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [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_gen] = 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_extern] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_macro_rules_BANG] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_u8] = ACTIONS(2576), - [anon_sym_i8] = ACTIONS(2576), - [anon_sym_u16] = ACTIONS(2576), - [anon_sym_i16] = ACTIONS(2576), - [anon_sym_u32] = ACTIONS(2576), - [anon_sym_i32] = ACTIONS(2576), - [anon_sym_u64] = ACTIONS(2576), - [anon_sym_i64] = ACTIONS(2576), - [anon_sym_u128] = ACTIONS(2576), - [anon_sym_i128] = ACTIONS(2576), - [anon_sym_isize] = ACTIONS(2576), - [anon_sym_usize] = ACTIONS(2576), - [anon_sym_f32] = ACTIONS(2576), - [anon_sym_f64] = ACTIONS(2576), - [anon_sym_bool] = ACTIONS(2576), - [anon_sym_str] = ACTIONS(2576), - [anon_sym_char] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2574), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_SQUOTE] = ACTIONS(2576), - [anon_sym_async] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_default] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_fn] = ACTIONS(2576), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_gen] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_impl] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_loop] = ACTIONS(2576), - [anon_sym_match] = ACTIONS(2576), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_unsafe] = ACTIONS(2576), - [anon_sym_use] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_yield] = ACTIONS(2576), - [anon_sym_move] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [sym_integer_literal] = ACTIONS(2574), - [aux_sym_string_literal_token1] = ACTIONS(2574), - [sym_char_literal] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2576), - [sym_super] = ACTIONS(2576), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2574), - [sym__raw_string_literal_start] = ACTIONS(2574), - [sym_float_literal] = ACTIONS(2574), + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_macro_rules_BANG] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_u8] = ACTIONS(2582), + [anon_sym_i8] = ACTIONS(2582), + [anon_sym_u16] = ACTIONS(2582), + [anon_sym_i16] = ACTIONS(2582), + [anon_sym_u32] = ACTIONS(2582), + [anon_sym_i32] = ACTIONS(2582), + [anon_sym_u64] = ACTIONS(2582), + [anon_sym_i64] = ACTIONS(2582), + [anon_sym_u128] = ACTIONS(2582), + [anon_sym_i128] = ACTIONS(2582), + [anon_sym_isize] = ACTIONS(2582), + [anon_sym_usize] = ACTIONS(2582), + [anon_sym_f32] = ACTIONS(2582), + [anon_sym_f64] = ACTIONS(2582), + [anon_sym_bool] = ACTIONS(2582), + [anon_sym_str] = ACTIONS(2582), + [anon_sym_char] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_DOT_DOT] = ACTIONS(2580), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2582), + [anon_sym_async] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_fn] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_gen] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_impl] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_loop] = ACTIONS(2582), + [anon_sym_match] = ACTIONS(2582), + [anon_sym_mod] = ACTIONS(2582), + [anon_sym_pub] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_trait] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2582), + [anon_sym_use] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym_yield] = ACTIONS(2582), + [anon_sym_move] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2582), + [sym_integer_literal] = ACTIONS(2580), + [aux_sym_string_literal_token1] = ACTIONS(2580), + [sym_char_literal] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2582), + [anon_sym_false] = ACTIONS(2582), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2582), + [sym_super] = ACTIONS(2582), + [sym_crate] = ACTIONS(2582), + [sym_metavariable] = ACTIONS(2580), + [sym__raw_string_literal_start] = ACTIONS(2580), + [sym_float_literal] = ACTIONS(2580), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_macro_rules_BANG] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_u8] = ACTIONS(2580), - [anon_sym_i8] = ACTIONS(2580), - [anon_sym_u16] = ACTIONS(2580), - [anon_sym_i16] = ACTIONS(2580), - [anon_sym_u32] = ACTIONS(2580), - [anon_sym_i32] = ACTIONS(2580), - [anon_sym_u64] = ACTIONS(2580), - [anon_sym_i64] = ACTIONS(2580), - [anon_sym_u128] = ACTIONS(2580), - [anon_sym_i128] = ACTIONS(2580), - [anon_sym_isize] = ACTIONS(2580), - [anon_sym_usize] = ACTIONS(2580), - [anon_sym_f32] = ACTIONS(2580), - [anon_sym_f64] = ACTIONS(2580), - [anon_sym_bool] = ACTIONS(2580), - [anon_sym_str] = ACTIONS(2580), - [anon_sym_char] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_DOT_DOT] = ACTIONS(2578), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_fn] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_gen] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_impl] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2580), - [anon_sym_loop] = ACTIONS(2580), - [anon_sym_match] = ACTIONS(2580), - [anon_sym_mod] = ACTIONS(2580), - [anon_sym_pub] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_trait] = ACTIONS(2580), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_unsafe] = ACTIONS(2580), - [anon_sym_use] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_yield] = ACTIONS(2580), - [anon_sym_move] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [sym_integer_literal] = ACTIONS(2578), - [aux_sym_string_literal_token1] = ACTIONS(2578), - [sym_char_literal] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2580), - [sym_super] = ACTIONS(2580), - [sym_crate] = ACTIONS(2580), - [sym_metavariable] = ACTIONS(2578), - [sym__raw_string_literal_start] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(2578), + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_macro_rules_BANG] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_unsafe] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym__raw_string_literal_start] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_macro_rules_BANG] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_u8] = ACTIONS(2584), - [anon_sym_i8] = ACTIONS(2584), - [anon_sym_u16] = ACTIONS(2584), - [anon_sym_i16] = ACTIONS(2584), - [anon_sym_u32] = ACTIONS(2584), - [anon_sym_i32] = ACTIONS(2584), - [anon_sym_u64] = ACTIONS(2584), - [anon_sym_i64] = ACTIONS(2584), - [anon_sym_u128] = ACTIONS(2584), - [anon_sym_i128] = ACTIONS(2584), - [anon_sym_isize] = ACTIONS(2584), - [anon_sym_usize] = ACTIONS(2584), - [anon_sym_f32] = ACTIONS(2584), - [anon_sym_f64] = ACTIONS(2584), - [anon_sym_bool] = ACTIONS(2584), - [anon_sym_str] = ACTIONS(2584), - [anon_sym_char] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_DOT_DOT] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_async] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_fn] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_gen] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_impl] = ACTIONS(2584), - [anon_sym_let] = ACTIONS(2584), - [anon_sym_loop] = ACTIONS(2584), - [anon_sym_match] = ACTIONS(2584), - [anon_sym_mod] = ACTIONS(2584), - [anon_sym_pub] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_trait] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_yield] = ACTIONS(2584), - [anon_sym_move] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2582), - [aux_sym_string_literal_token1] = ACTIONS(2582), - [sym_char_literal] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2584), - [sym_super] = ACTIONS(2584), - [sym_crate] = ACTIONS(2584), - [sym_metavariable] = ACTIONS(2582), - [sym__raw_string_literal_start] = ACTIONS(2582), - [sym_float_literal] = ACTIONS(2582), + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [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_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [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_gen] = 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_extern] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [anon_sym_try] = 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), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_macro_rules_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_u8] = ACTIONS(2588), - [anon_sym_i8] = ACTIONS(2588), - [anon_sym_u16] = ACTIONS(2588), - [anon_sym_i16] = ACTIONS(2588), - [anon_sym_u32] = ACTIONS(2588), - [anon_sym_i32] = ACTIONS(2588), - [anon_sym_u64] = ACTIONS(2588), - [anon_sym_i64] = ACTIONS(2588), - [anon_sym_u128] = ACTIONS(2588), - [anon_sym_i128] = ACTIONS(2588), - [anon_sym_isize] = ACTIONS(2588), - [anon_sym_usize] = ACTIONS(2588), - [anon_sym_f32] = ACTIONS(2588), - [anon_sym_f64] = ACTIONS(2588), - [anon_sym_bool] = ACTIONS(2588), - [anon_sym_str] = ACTIONS(2588), - [anon_sym_char] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_fn] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_gen] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_impl] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_loop] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2588), - [anon_sym_mod] = ACTIONS(2588), - [anon_sym_pub] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_use] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_move] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [aux_sym_string_literal_token1] = ACTIONS(2586), - [sym_char_literal] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_crate] = ACTIONS(2588), - [sym_metavariable] = ACTIONS(2586), - [sym__raw_string_literal_start] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(2586), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_macro_rules_BANG] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_u8] = ACTIONS(2586), + [anon_sym_i8] = ACTIONS(2586), + [anon_sym_u16] = ACTIONS(2586), + [anon_sym_i16] = ACTIONS(2586), + [anon_sym_u32] = ACTIONS(2586), + [anon_sym_i32] = ACTIONS(2586), + [anon_sym_u64] = ACTIONS(2586), + [anon_sym_i64] = ACTIONS(2586), + [anon_sym_u128] = ACTIONS(2586), + [anon_sym_i128] = ACTIONS(2586), + [anon_sym_isize] = ACTIONS(2586), + [anon_sym_usize] = ACTIONS(2586), + [anon_sym_f32] = ACTIONS(2586), + [anon_sym_f64] = ACTIONS(2586), + [anon_sym_bool] = ACTIONS(2586), + [anon_sym_str] = ACTIONS(2586), + [anon_sym_char] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_DOT_DOT] = ACTIONS(2584), + [anon_sym_COLON_COLON] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_fn] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_gen] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_impl] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_loop] = ACTIONS(2586), + [anon_sym_match] = ACTIONS(2586), + [anon_sym_mod] = ACTIONS(2586), + [anon_sym_pub] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_trait] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_unsafe] = ACTIONS(2586), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_move] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [sym_integer_literal] = ACTIONS(2584), + [aux_sym_string_literal_token1] = ACTIONS(2584), + [sym_char_literal] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2586), + [anon_sym_false] = ACTIONS(2586), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_crate] = ACTIONS(2586), + [sym_metavariable] = ACTIONS(2584), + [sym__raw_string_literal_start] = ACTIONS(2584), + [sym_float_literal] = ACTIONS(2584), }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_macro_rules_BANG] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_u8] = ACTIONS(2592), - [anon_sym_i8] = ACTIONS(2592), - [anon_sym_u16] = ACTIONS(2592), - [anon_sym_i16] = ACTIONS(2592), - [anon_sym_u32] = ACTIONS(2592), - [anon_sym_i32] = ACTIONS(2592), - [anon_sym_u64] = ACTIONS(2592), - [anon_sym_i64] = ACTIONS(2592), - [anon_sym_u128] = ACTIONS(2592), - [anon_sym_i128] = ACTIONS(2592), - [anon_sym_isize] = ACTIONS(2592), - [anon_sym_usize] = ACTIONS(2592), - [anon_sym_f32] = ACTIONS(2592), - [anon_sym_f64] = ACTIONS(2592), - [anon_sym_bool] = ACTIONS(2592), - [anon_sym_str] = ACTIONS(2592), - [anon_sym_char] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_fn] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_gen] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_impl] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_mod] = ACTIONS(2592), - [anon_sym_pub] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_struct] = ACTIONS(2592), - [anon_sym_trait] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_union] = ACTIONS(2592), - [anon_sym_unsafe] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_move] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [aux_sym_string_literal_token1] = ACTIONS(2590), - [sym_char_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2590), - [sym__raw_string_literal_start] = ACTIONS(2590), - [sym_float_literal] = ACTIONS(2590), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_u8] = ACTIONS(2590), + [anon_sym_i8] = ACTIONS(2590), + [anon_sym_u16] = ACTIONS(2590), + [anon_sym_i16] = ACTIONS(2590), + [anon_sym_u32] = ACTIONS(2590), + [anon_sym_i32] = ACTIONS(2590), + [anon_sym_u64] = ACTIONS(2590), + [anon_sym_i64] = ACTIONS(2590), + [anon_sym_u128] = ACTIONS(2590), + [anon_sym_i128] = ACTIONS(2590), + [anon_sym_isize] = ACTIONS(2590), + [anon_sym_usize] = ACTIONS(2590), + [anon_sym_f32] = ACTIONS(2590), + [anon_sym_f64] = ACTIONS(2590), + [anon_sym_bool] = ACTIONS(2590), + [anon_sym_str] = ACTIONS(2590), + [anon_sym_char] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_fn] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_gen] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_impl] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_loop] = ACTIONS(2590), + [anon_sym_match] = ACTIONS(2590), + [anon_sym_mod] = ACTIONS(2590), + [anon_sym_pub] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_trait] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_unsafe] = ACTIONS(2590), + [anon_sym_use] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_move] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [sym_integer_literal] = ACTIONS(2588), + [aux_sym_string_literal_token1] = ACTIONS(2588), + [sym_char_literal] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2590), + [sym_metavariable] = ACTIONS(2588), + [sym__raw_string_literal_start] = ACTIONS(2588), + [sym_float_literal] = ACTIONS(2588), }, - [STATE(686)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2594), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_macro_rules_BANG] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_DOT_DOT] = ACTIONS(2592), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_async] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_fn] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_gen] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_impl] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_loop] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2594), + [anon_sym_pub] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_trait] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_unsafe] = ACTIONS(2594), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_move] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [sym_integer_literal] = ACTIONS(2592), + [aux_sym_string_literal_token1] = ACTIONS(2592), + [sym_char_literal] = ACTIONS(2592), + [anon_sym_true] = ACTIONS(2594), + [anon_sym_false] = ACTIONS(2594), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2594), + [sym_super] = ACTIONS(2594), + [sym_crate] = ACTIONS(2594), + [sym_metavariable] = ACTIONS(2592), + [sym__raw_string_literal_start] = ACTIONS(2592), + [sym_float_literal] = ACTIONS(2592), }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [ts_builtin_sym_end] = ACTIONS(2596), [sym_identifier] = ACTIONS(2598), [anon_sym_SEMI] = ACTIONS(2596), @@ -87113,9 +85255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2596), [sym_float_literal] = ACTIONS(2596), }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), [ts_builtin_sym_end] = ACTIONS(2600), [sym_identifier] = ACTIONS(2602), [anon_sym_SEMI] = ACTIONS(2600), @@ -87194,9 +85336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2600), [sym_float_literal] = ACTIONS(2600), }, - [STATE(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2604), [sym_identifier] = ACTIONS(2606), [anon_sym_SEMI] = ACTIONS(2604), @@ -87275,9 +85417,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2604), [sym_float_literal] = ACTIONS(2604), }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2608), [sym_identifier] = ACTIONS(2610), [anon_sym_SEMI] = ACTIONS(2608), @@ -87356,9 +85498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2608), [sym_float_literal] = ACTIONS(2608), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2612), [sym_identifier] = ACTIONS(2614), [anon_sym_SEMI] = ACTIONS(2612), @@ -87437,9 +85579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2612), [sym_float_literal] = ACTIONS(2612), }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2616), [sym_identifier] = ACTIONS(2618), [anon_sym_SEMI] = ACTIONS(2616), @@ -87518,90 +85660,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2616), [sym_float_literal] = ACTIONS(2616), }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), - }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2620), [sym_identifier] = ACTIONS(2622), [anon_sym_SEMI] = ACTIONS(2620), @@ -87680,9 +85741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2620), [sym_float_literal] = ACTIONS(2620), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2624), [sym_identifier] = ACTIONS(2626), [anon_sym_SEMI] = ACTIONS(2624), @@ -87761,9 +85822,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2624), [sym_float_literal] = ACTIONS(2624), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(672)] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2628), [sym_identifier] = ACTIONS(2630), [anon_sym_SEMI] = ACTIONS(2628), @@ -87842,9 +85903,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2628), [sym_float_literal] = ACTIONS(2628), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2632), [sym_identifier] = ACTIONS(2634), [anon_sym_SEMI] = ACTIONS(2632), @@ -87923,9 +85984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2632), [sym_float_literal] = ACTIONS(2632), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2636), [sym_identifier] = ACTIONS(2638), [anon_sym_SEMI] = ACTIONS(2636), @@ -88004,9 +86065,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2636), [sym_float_literal] = ACTIONS(2636), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2640), [sym_identifier] = ACTIONS(2642), [anon_sym_SEMI] = ACTIONS(2640), @@ -88085,9 +86146,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2640), [sym_float_literal] = ACTIONS(2640), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2644), [sym_identifier] = ACTIONS(2646), [anon_sym_SEMI] = ACTIONS(2644), @@ -88166,9 +86227,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2644), [sym_float_literal] = ACTIONS(2644), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2648), [sym_identifier] = ACTIONS(2650), [anon_sym_SEMI] = ACTIONS(2648), @@ -88247,9 +86308,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2648), [sym_float_literal] = ACTIONS(2648), }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2654), [anon_sym_SEMI] = ACTIONS(2652), @@ -88328,495 +86389,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2652), [sym_float_literal] = ACTIONS(2652), }, - [STATE(703)] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2656), - [sym_identifier] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_macro_rules_BANG] = ACTIONS(2656), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), + [STATE(679)] = { + [sym_empty_statement] = STATE(1305), + [sym_macro_definition] = STATE(1305), + [sym_attribute_item] = STATE(1305), + [sym_inner_attribute_item] = STATE(1305), + [sym_mod_item] = STATE(1305), + [sym_foreign_mod_item] = STATE(1305), + [sym_struct_item] = STATE(1305), + [sym_union_item] = STATE(1305), + [sym_enum_item] = STATE(1305), + [sym_extern_crate_declaration] = STATE(1305), + [sym_const_item] = STATE(1305), + [sym_static_item] = STATE(1305), + [sym_type_item] = STATE(1305), + [sym_function_item] = STATE(1305), + [sym_function_signature_item] = STATE(1305), + [sym_function_modifiers] = STATE(3747), + [sym_impl_item] = STATE(1305), + [sym_trait_item] = STATE(1305), + [sym_associated_type] = STATE(1305), + [sym_let_declaration] = STATE(1305), + [sym_use_declaration] = STATE(1305), + [sym_extern_modifier] = STATE(2250), + [sym_visibility_modifier] = STATE(2009), + [sym_bracketed_type] = STATE(3696), + [sym_generic_type_with_turbofish] = STATE(3770), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(3191), + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [aux_sym_declaration_list_repeat1] = STATE(685), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_STAR] = ACTIONS(2656), - [anon_sym_u8] = ACTIONS(2658), - [anon_sym_i8] = ACTIONS(2658), - [anon_sym_u16] = ACTIONS(2658), - [anon_sym_i16] = ACTIONS(2658), - [anon_sym_u32] = ACTIONS(2658), - [anon_sym_i32] = ACTIONS(2658), - [anon_sym_u64] = ACTIONS(2658), - [anon_sym_i64] = ACTIONS(2658), - [anon_sym_u128] = ACTIONS(2658), - [anon_sym_i128] = ACTIONS(2658), - [anon_sym_isize] = ACTIONS(2658), - [anon_sym_usize] = ACTIONS(2658), - [anon_sym_f32] = ACTIONS(2658), - [anon_sym_f64] = ACTIONS(2658), - [anon_sym_bool] = ACTIONS(2658), - [anon_sym_str] = ACTIONS(2658), - [anon_sym_char] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_LT] = ACTIONS(2656), - [anon_sym_DOT_DOT] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_POUND] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2658), - [anon_sym_async] = ACTIONS(2658), - [anon_sym_break] = ACTIONS(2658), - [anon_sym_const] = ACTIONS(2658), - [anon_sym_continue] = ACTIONS(2658), - [anon_sym_default] = ACTIONS(2658), - [anon_sym_enum] = ACTIONS(2658), - [anon_sym_fn] = ACTIONS(2658), - [anon_sym_for] = ACTIONS(2658), - [anon_sym_gen] = ACTIONS(2658), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_impl] = ACTIONS(2658), - [anon_sym_let] = ACTIONS(2658), - [anon_sym_loop] = ACTIONS(2658), - [anon_sym_match] = ACTIONS(2658), - [anon_sym_mod] = ACTIONS(2658), - [anon_sym_pub] = ACTIONS(2658), - [anon_sym_return] = ACTIONS(2658), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_struct] = ACTIONS(2658), - [anon_sym_trait] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_union] = ACTIONS(2658), - [anon_sym_unsafe] = ACTIONS(2658), - [anon_sym_use] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2658), - [anon_sym_extern] = ACTIONS(2658), - [anon_sym_yield] = ACTIONS(2658), - [anon_sym_move] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2658), - [sym_integer_literal] = ACTIONS(2656), - [aux_sym_string_literal_token1] = ACTIONS(2656), - [sym_char_literal] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2658), - [sym_super] = ACTIONS(2658), - [sym_crate] = ACTIONS(2658), - [sym_metavariable] = ACTIONS(2656), - [sym__raw_string_literal_start] = ACTIONS(2656), - [sym_float_literal] = ACTIONS(2656), + [anon_sym_u8] = ACTIONS(2536), + [anon_sym_i8] = ACTIONS(2536), + [anon_sym_u16] = ACTIONS(2536), + [anon_sym_i16] = ACTIONS(2536), + [anon_sym_u32] = ACTIONS(2536), + [anon_sym_i32] = ACTIONS(2536), + [anon_sym_u64] = ACTIONS(2536), + [anon_sym_i64] = ACTIONS(2536), + [anon_sym_u128] = ACTIONS(2536), + [anon_sym_i128] = ACTIONS(2536), + [anon_sym_isize] = ACTIONS(2536), + [anon_sym_usize] = ACTIONS(2536), + [anon_sym_f32] = ACTIONS(2536), + [anon_sym_f64] = ACTIONS(2536), + [anon_sym_bool] = ACTIONS(2536), + [anon_sym_str] = ACTIONS(2536), + [anon_sym_char] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2546), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2550), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2566), + [anon_sym_unsafe] = ACTIONS(2568), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2578), }, - [STATE(704)] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2660), - [sym_identifier] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_macro_rules_BANG] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_STAR] = ACTIONS(2660), - [anon_sym_u8] = ACTIONS(2662), - [anon_sym_i8] = ACTIONS(2662), - [anon_sym_u16] = ACTIONS(2662), - [anon_sym_i16] = ACTIONS(2662), - [anon_sym_u32] = ACTIONS(2662), - [anon_sym_i32] = ACTIONS(2662), - [anon_sym_u64] = ACTIONS(2662), - [anon_sym_i64] = ACTIONS(2662), - [anon_sym_u128] = ACTIONS(2662), - [anon_sym_i128] = ACTIONS(2662), - [anon_sym_isize] = ACTIONS(2662), - [anon_sym_usize] = ACTIONS(2662), - [anon_sym_f32] = ACTIONS(2662), - [anon_sym_f64] = ACTIONS(2662), - [anon_sym_bool] = ACTIONS(2662), - [anon_sym_str] = ACTIONS(2662), - [anon_sym_char] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2660), - [anon_sym_DOT_DOT] = ACTIONS(2660), - [anon_sym_COLON_COLON] = ACTIONS(2660), - [anon_sym_POUND] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2662), - [anon_sym_async] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_fn] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_gen] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_impl] = ACTIONS(2662), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_loop] = ACTIONS(2662), - [anon_sym_match] = ACTIONS(2662), - [anon_sym_mod] = ACTIONS(2662), - [anon_sym_pub] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_struct] = ACTIONS(2662), - [anon_sym_trait] = ACTIONS(2662), - [anon_sym_type] = ACTIONS(2662), - [anon_sym_union] = ACTIONS(2662), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_use] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2662), - [anon_sym_move] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [sym_integer_literal] = ACTIONS(2660), - [aux_sym_string_literal_token1] = ACTIONS(2660), - [sym_char_literal] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2662), - [sym_super] = ACTIONS(2662), - [sym_crate] = ACTIONS(2662), - [sym_metavariable] = ACTIONS(2660), - [sym__raw_string_literal_start] = ACTIONS(2660), - [sym_float_literal] = ACTIONS(2660), + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2658), + [sym_identifier] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_macro_rules_BANG] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_STAR] = ACTIONS(2658), + [anon_sym_u8] = ACTIONS(2660), + [anon_sym_i8] = ACTIONS(2660), + [anon_sym_u16] = ACTIONS(2660), + [anon_sym_i16] = ACTIONS(2660), + [anon_sym_u32] = ACTIONS(2660), + [anon_sym_i32] = ACTIONS(2660), + [anon_sym_u64] = ACTIONS(2660), + [anon_sym_i64] = ACTIONS(2660), + [anon_sym_u128] = ACTIONS(2660), + [anon_sym_i128] = ACTIONS(2660), + [anon_sym_isize] = ACTIONS(2660), + [anon_sym_usize] = ACTIONS(2660), + [anon_sym_f32] = ACTIONS(2660), + [anon_sym_f64] = ACTIONS(2660), + [anon_sym_bool] = ACTIONS(2660), + [anon_sym_str] = ACTIONS(2660), + [anon_sym_char] = ACTIONS(2660), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_DOT_DOT] = ACTIONS(2658), + [anon_sym_COLON_COLON] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(2658), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_async] = ACTIONS(2660), + [anon_sym_break] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_continue] = ACTIONS(2660), + [anon_sym_default] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_fn] = ACTIONS(2660), + [anon_sym_for] = ACTIONS(2660), + [anon_sym_gen] = ACTIONS(2660), + [anon_sym_if] = ACTIONS(2660), + [anon_sym_impl] = ACTIONS(2660), + [anon_sym_let] = ACTIONS(2660), + [anon_sym_loop] = ACTIONS(2660), + [anon_sym_match] = ACTIONS(2660), + [anon_sym_mod] = ACTIONS(2660), + [anon_sym_pub] = ACTIONS(2660), + [anon_sym_return] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_trait] = ACTIONS(2660), + [anon_sym_type] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2660), + [anon_sym_use] = ACTIONS(2660), + [anon_sym_while] = ACTIONS(2660), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym_yield] = ACTIONS(2660), + [anon_sym_move] = ACTIONS(2660), + [anon_sym_try] = ACTIONS(2660), + [sym_integer_literal] = ACTIONS(2658), + [aux_sym_string_literal_token1] = ACTIONS(2658), + [sym_char_literal] = ACTIONS(2658), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2660), + [sym_super] = ACTIONS(2660), + [sym_crate] = ACTIONS(2660), + [sym_metavariable] = ACTIONS(2658), + [sym__raw_string_literal_start] = ACTIONS(2658), + [sym_float_literal] = ACTIONS(2658), }, - [STATE(705)] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2664), - [sym_identifier] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_macro_rules_BANG] = ACTIONS(2664), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_u8] = ACTIONS(2666), - [anon_sym_i8] = ACTIONS(2666), - [anon_sym_u16] = ACTIONS(2666), - [anon_sym_i16] = ACTIONS(2666), - [anon_sym_u32] = ACTIONS(2666), - [anon_sym_i32] = ACTIONS(2666), - [anon_sym_u64] = ACTIONS(2666), - [anon_sym_i64] = ACTIONS(2666), - [anon_sym_u128] = ACTIONS(2666), - [anon_sym_i128] = ACTIONS(2666), - [anon_sym_isize] = ACTIONS(2666), - [anon_sym_usize] = ACTIONS(2666), - [anon_sym_f32] = ACTIONS(2666), - [anon_sym_f64] = ACTIONS(2666), - [anon_sym_bool] = ACTIONS(2666), - [anon_sym_str] = ACTIONS(2666), - [anon_sym_char] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2664), - [anon_sym_LT] = ACTIONS(2664), - [anon_sym_DOT_DOT] = ACTIONS(2664), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_POUND] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_async] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_gen] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_impl] = ACTIONS(2666), - [anon_sym_let] = ACTIONS(2666), - [anon_sym_loop] = ACTIONS(2666), - [anon_sym_match] = ACTIONS(2666), - [anon_sym_mod] = ACTIONS(2666), - [anon_sym_pub] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2666), - [anon_sym_trait] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_union] = ACTIONS(2666), - [anon_sym_unsafe] = ACTIONS(2666), - [anon_sym_use] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym_yield] = ACTIONS(2666), - [anon_sym_move] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [sym_integer_literal] = ACTIONS(2664), - [aux_sym_string_literal_token1] = ACTIONS(2664), - [sym_char_literal] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2666), - [sym_super] = ACTIONS(2666), - [sym_crate] = ACTIONS(2666), - [sym_metavariable] = ACTIONS(2664), - [sym__raw_string_literal_start] = ACTIONS(2664), - [sym_float_literal] = ACTIONS(2664), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_identifier] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_macro_rules_BANG] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_RBRACE] = ACTIONS(2662), + [anon_sym_STAR] = ACTIONS(2662), + [anon_sym_u8] = ACTIONS(2664), + [anon_sym_i8] = ACTIONS(2664), + [anon_sym_u16] = ACTIONS(2664), + [anon_sym_i16] = ACTIONS(2664), + [anon_sym_u32] = ACTIONS(2664), + [anon_sym_i32] = ACTIONS(2664), + [anon_sym_u64] = ACTIONS(2664), + [anon_sym_i64] = ACTIONS(2664), + [anon_sym_u128] = ACTIONS(2664), + [anon_sym_i128] = ACTIONS(2664), + [anon_sym_isize] = ACTIONS(2664), + [anon_sym_usize] = ACTIONS(2664), + [anon_sym_f32] = ACTIONS(2664), + [anon_sym_f64] = ACTIONS(2664), + [anon_sym_bool] = ACTIONS(2664), + [anon_sym_str] = ACTIONS(2664), + [anon_sym_char] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_DOT_DOT] = ACTIONS(2662), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(2662), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_async] = ACTIONS(2664), + [anon_sym_break] = ACTIONS(2664), + [anon_sym_const] = ACTIONS(2664), + [anon_sym_continue] = ACTIONS(2664), + [anon_sym_default] = ACTIONS(2664), + [anon_sym_enum] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2664), + [anon_sym_gen] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_impl] = ACTIONS(2664), + [anon_sym_let] = ACTIONS(2664), + [anon_sym_loop] = ACTIONS(2664), + [anon_sym_match] = ACTIONS(2664), + [anon_sym_mod] = ACTIONS(2664), + [anon_sym_pub] = ACTIONS(2664), + [anon_sym_return] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2664), + [anon_sym_struct] = ACTIONS(2664), + [anon_sym_trait] = ACTIONS(2664), + [anon_sym_type] = ACTIONS(2664), + [anon_sym_union] = ACTIONS(2664), + [anon_sym_unsafe] = ACTIONS(2664), + [anon_sym_use] = ACTIONS(2664), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_extern] = ACTIONS(2664), + [anon_sym_yield] = ACTIONS(2664), + [anon_sym_move] = ACTIONS(2664), + [anon_sym_try] = ACTIONS(2664), + [sym_integer_literal] = ACTIONS(2662), + [aux_sym_string_literal_token1] = ACTIONS(2662), + [sym_char_literal] = ACTIONS(2662), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2664), + [sym_super] = ACTIONS(2664), + [sym_crate] = ACTIONS(2664), + [sym_metavariable] = ACTIONS(2662), + [sym__raw_string_literal_start] = ACTIONS(2662), + [sym_float_literal] = ACTIONS(2662), }, - [STATE(706)] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_macro_rules_BANG] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_u8] = ACTIONS(2670), - [anon_sym_i8] = ACTIONS(2670), - [anon_sym_u16] = ACTIONS(2670), - [anon_sym_i16] = ACTIONS(2670), - [anon_sym_u32] = ACTIONS(2670), - [anon_sym_i32] = ACTIONS(2670), - [anon_sym_u64] = ACTIONS(2670), - [anon_sym_i64] = ACTIONS(2670), - [anon_sym_u128] = ACTIONS(2670), - [anon_sym_i128] = ACTIONS(2670), - [anon_sym_isize] = ACTIONS(2670), - [anon_sym_usize] = ACTIONS(2670), - [anon_sym_f32] = ACTIONS(2670), - [anon_sym_f64] = ACTIONS(2670), - [anon_sym_bool] = ACTIONS(2670), - [anon_sym_str] = ACTIONS(2670), - [anon_sym_char] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_DOT_DOT] = ACTIONS(2668), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2670), - [anon_sym_async] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), - [anon_sym_fn] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_gen] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_impl] = ACTIONS(2670), - [anon_sym_let] = ACTIONS(2670), - [anon_sym_loop] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2670), - [anon_sym_mod] = ACTIONS(2670), - [anon_sym_pub] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2670), - [anon_sym_trait] = ACTIONS(2670), - [anon_sym_type] = ACTIONS(2670), - [anon_sym_union] = ACTIONS(2670), - [anon_sym_unsafe] = ACTIONS(2670), - [anon_sym_use] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_extern] = ACTIONS(2670), - [anon_sym_yield] = ACTIONS(2670), - [anon_sym_move] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [sym_integer_literal] = ACTIONS(2668), - [aux_sym_string_literal_token1] = ACTIONS(2668), - [sym_char_literal] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2670), - [anon_sym_false] = ACTIONS(2670), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2670), - [sym_super] = ACTIONS(2670), - [sym_crate] = ACTIONS(2670), - [sym_metavariable] = ACTIONS(2668), - [sym__raw_string_literal_start] = ACTIONS(2668), - [sym_float_literal] = ACTIONS(2668), + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_identifier] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_macro_rules_BANG] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_RBRACE] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(2666), + [anon_sym_u8] = ACTIONS(2668), + [anon_sym_i8] = ACTIONS(2668), + [anon_sym_u16] = ACTIONS(2668), + [anon_sym_i16] = ACTIONS(2668), + [anon_sym_u32] = ACTIONS(2668), + [anon_sym_i32] = ACTIONS(2668), + [anon_sym_u64] = ACTIONS(2668), + [anon_sym_i64] = ACTIONS(2668), + [anon_sym_u128] = ACTIONS(2668), + [anon_sym_i128] = ACTIONS(2668), + [anon_sym_isize] = ACTIONS(2668), + [anon_sym_usize] = ACTIONS(2668), + [anon_sym_f32] = ACTIONS(2668), + [anon_sym_f64] = ACTIONS(2668), + [anon_sym_bool] = ACTIONS(2668), + [anon_sym_str] = ACTIONS(2668), + [anon_sym_char] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_DOT_DOT] = ACTIONS(2666), + [anon_sym_COLON_COLON] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2666), + [anon_sym_SQUOTE] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(2668), + [anon_sym_break] = ACTIONS(2668), + [anon_sym_const] = ACTIONS(2668), + [anon_sym_continue] = ACTIONS(2668), + [anon_sym_default] = ACTIONS(2668), + [anon_sym_enum] = ACTIONS(2668), + [anon_sym_fn] = ACTIONS(2668), + [anon_sym_for] = ACTIONS(2668), + [anon_sym_gen] = ACTIONS(2668), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_impl] = ACTIONS(2668), + [anon_sym_let] = ACTIONS(2668), + [anon_sym_loop] = ACTIONS(2668), + [anon_sym_match] = ACTIONS(2668), + [anon_sym_mod] = ACTIONS(2668), + [anon_sym_pub] = ACTIONS(2668), + [anon_sym_return] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2668), + [anon_sym_struct] = ACTIONS(2668), + [anon_sym_trait] = ACTIONS(2668), + [anon_sym_type] = ACTIONS(2668), + [anon_sym_union] = ACTIONS(2668), + [anon_sym_unsafe] = ACTIONS(2668), + [anon_sym_use] = ACTIONS(2668), + [anon_sym_while] = ACTIONS(2668), + [anon_sym_extern] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(2668), + [anon_sym_move] = ACTIONS(2668), + [anon_sym_try] = ACTIONS(2668), + [sym_integer_literal] = ACTIONS(2666), + [aux_sym_string_literal_token1] = ACTIONS(2666), + [sym_char_literal] = ACTIONS(2666), + [anon_sym_true] = ACTIONS(2668), + [anon_sym_false] = ACTIONS(2668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2668), + [sym_super] = ACTIONS(2668), + [sym_crate] = ACTIONS(2668), + [sym_metavariable] = ACTIONS(2666), + [sym__raw_string_literal_start] = ACTIONS(2666), + [sym_float_literal] = ACTIONS(2666), }, - [STATE(707)] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_identifier] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_macro_rules_BANG] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_u8] = ACTIONS(2674), - [anon_sym_i8] = ACTIONS(2674), - [anon_sym_u16] = ACTIONS(2674), - [anon_sym_i16] = ACTIONS(2674), - [anon_sym_u32] = ACTIONS(2674), - [anon_sym_i32] = ACTIONS(2674), - [anon_sym_u64] = ACTIONS(2674), - [anon_sym_i64] = ACTIONS(2674), - [anon_sym_u128] = ACTIONS(2674), - [anon_sym_i128] = ACTIONS(2674), - [anon_sym_isize] = ACTIONS(2674), - [anon_sym_usize] = ACTIONS(2674), - [anon_sym_f32] = ACTIONS(2674), - [anon_sym_f64] = ACTIONS(2674), - [anon_sym_bool] = ACTIONS(2674), - [anon_sym_str] = ACTIONS(2674), - [anon_sym_char] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_DOT_DOT] = ACTIONS(2672), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_POUND] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2674), - [anon_sym_async] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_fn] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_gen] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_impl] = ACTIONS(2674), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_loop] = ACTIONS(2674), - [anon_sym_match] = ACTIONS(2674), - [anon_sym_mod] = ACTIONS(2674), - [anon_sym_pub] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2674), - [anon_sym_trait] = ACTIONS(2674), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_union] = ACTIONS(2674), - [anon_sym_unsafe] = ACTIONS(2674), - [anon_sym_use] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym_yield] = ACTIONS(2674), - [anon_sym_move] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [aux_sym_string_literal_token1] = ACTIONS(2672), - [sym_char_literal] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2674), - [sym_super] = ACTIONS(2674), - [sym_crate] = ACTIONS(2674), - [sym_metavariable] = ACTIONS(2672), - [sym__raw_string_literal_start] = ACTIONS(2672), - [sym_float_literal] = ACTIONS(2672), + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2670), + [sym_identifier] = ACTIONS(2672), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_macro_rules_BANG] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_STAR] = ACTIONS(2670), + [anon_sym_u8] = ACTIONS(2672), + [anon_sym_i8] = ACTIONS(2672), + [anon_sym_u16] = ACTIONS(2672), + [anon_sym_i16] = ACTIONS(2672), + [anon_sym_u32] = ACTIONS(2672), + [anon_sym_i32] = ACTIONS(2672), + [anon_sym_u64] = ACTIONS(2672), + [anon_sym_i64] = ACTIONS(2672), + [anon_sym_u128] = ACTIONS(2672), + [anon_sym_i128] = ACTIONS(2672), + [anon_sym_isize] = ACTIONS(2672), + [anon_sym_usize] = ACTIONS(2672), + [anon_sym_f32] = ACTIONS(2672), + [anon_sym_f64] = ACTIONS(2672), + [anon_sym_bool] = ACTIONS(2672), + [anon_sym_str] = ACTIONS(2672), + [anon_sym_char] = ACTIONS(2672), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_DOT_DOT] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(2670), + [anon_sym_SQUOTE] = ACTIONS(2672), + [anon_sym_async] = ACTIONS(2672), + [anon_sym_break] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_continue] = ACTIONS(2672), + [anon_sym_default] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_fn] = ACTIONS(2672), + [anon_sym_for] = ACTIONS(2672), + [anon_sym_gen] = ACTIONS(2672), + [anon_sym_if] = ACTIONS(2672), + [anon_sym_impl] = ACTIONS(2672), + [anon_sym_let] = ACTIONS(2672), + [anon_sym_loop] = ACTIONS(2672), + [anon_sym_match] = ACTIONS(2672), + [anon_sym_mod] = ACTIONS(2672), + [anon_sym_pub] = ACTIONS(2672), + [anon_sym_return] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_trait] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [anon_sym_unsafe] = ACTIONS(2672), + [anon_sym_use] = ACTIONS(2672), + [anon_sym_while] = ACTIONS(2672), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym_yield] = ACTIONS(2672), + [anon_sym_move] = ACTIONS(2672), + [anon_sym_try] = ACTIONS(2672), + [sym_integer_literal] = ACTIONS(2670), + [aux_sym_string_literal_token1] = ACTIONS(2670), + [sym_char_literal] = ACTIONS(2670), + [anon_sym_true] = ACTIONS(2672), + [anon_sym_false] = ACTIONS(2672), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2672), + [sym_super] = ACTIONS(2672), + [sym_crate] = ACTIONS(2672), + [sym_metavariable] = ACTIONS(2670), + [sym__raw_string_literal_start] = ACTIONS(2670), + [sym_float_literal] = ACTIONS(2670), }, - [STATE(708)] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2676), - [sym_identifier] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_macro_rules_BANG] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_u8] = ACTIONS(2678), - [anon_sym_i8] = ACTIONS(2678), - [anon_sym_u16] = ACTIONS(2678), - [anon_sym_i16] = ACTIONS(2678), - [anon_sym_u32] = ACTIONS(2678), - [anon_sym_i32] = ACTIONS(2678), - [anon_sym_u64] = ACTIONS(2678), - [anon_sym_i64] = ACTIONS(2678), - [anon_sym_u128] = ACTIONS(2678), - [anon_sym_i128] = ACTIONS(2678), - [anon_sym_isize] = ACTIONS(2678), - [anon_sym_usize] = ACTIONS(2678), - [anon_sym_f32] = ACTIONS(2678), - [anon_sym_f64] = ACTIONS(2678), - [anon_sym_bool] = ACTIONS(2678), - [anon_sym_str] = ACTIONS(2678), - [anon_sym_char] = ACTIONS(2678), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_DOT_DOT] = ACTIONS(2676), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_fn] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_gen] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_impl] = ACTIONS(2678), - [anon_sym_let] = ACTIONS(2678), - [anon_sym_loop] = ACTIONS(2678), - [anon_sym_match] = ACTIONS(2678), - [anon_sym_mod] = ACTIONS(2678), - [anon_sym_pub] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2678), - [anon_sym_trait] = ACTIONS(2678), - [anon_sym_type] = ACTIONS(2678), - [anon_sym_union] = ACTIONS(2678), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_use] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym_yield] = ACTIONS(2678), - [anon_sym_move] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [sym_integer_literal] = ACTIONS(2676), - [aux_sym_string_literal_token1] = ACTIONS(2676), - [sym_char_literal] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2678), - [anon_sym_false] = ACTIONS(2678), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2678), - [sym_super] = ACTIONS(2678), - [sym_crate] = ACTIONS(2678), - [sym_metavariable] = ACTIONS(2676), - [sym__raw_string_literal_start] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2676), + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_macro_rules_BANG] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_u8] = ACTIONS(2676), + [anon_sym_i8] = ACTIONS(2676), + [anon_sym_u16] = ACTIONS(2676), + [anon_sym_i16] = ACTIONS(2676), + [anon_sym_u32] = ACTIONS(2676), + [anon_sym_i32] = ACTIONS(2676), + [anon_sym_u64] = ACTIONS(2676), + [anon_sym_i64] = ACTIONS(2676), + [anon_sym_u128] = ACTIONS(2676), + [anon_sym_i128] = ACTIONS(2676), + [anon_sym_isize] = ACTIONS(2676), + [anon_sym_usize] = ACTIONS(2676), + [anon_sym_f32] = ACTIONS(2676), + [anon_sym_f64] = ACTIONS(2676), + [anon_sym_bool] = ACTIONS(2676), + [anon_sym_str] = ACTIONS(2676), + [anon_sym_char] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [anon_sym_COLON_COLON] = ACTIONS(2674), + [anon_sym_POUND] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_gen] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_impl] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_loop] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_mod] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_trait] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_use] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_yield] = ACTIONS(2676), + [anon_sym_move] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2676), + [sym_integer_literal] = ACTIONS(2674), + [aux_sym_string_literal_token1] = ACTIONS(2674), + [sym_char_literal] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2676), + [sym_super] = ACTIONS(2676), + [sym_crate] = ACTIONS(2676), + [sym_metavariable] = ACTIONS(2674), + [sym__raw_string_literal_start] = ACTIONS(2674), + [sym_float_literal] = ACTIONS(2674), }, - [STATE(709)] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [STATE(685)] = { + [sym_empty_statement] = STATE(1305), + [sym_macro_definition] = STATE(1305), + [sym_attribute_item] = STATE(1305), + [sym_inner_attribute_item] = STATE(1305), + [sym_mod_item] = STATE(1305), + [sym_foreign_mod_item] = STATE(1305), + [sym_struct_item] = STATE(1305), + [sym_union_item] = STATE(1305), + [sym_enum_item] = STATE(1305), + [sym_extern_crate_declaration] = STATE(1305), + [sym_const_item] = STATE(1305), + [sym_static_item] = STATE(1305), + [sym_type_item] = STATE(1305), + [sym_function_item] = STATE(1305), + [sym_function_signature_item] = STATE(1305), + [sym_function_modifiers] = STATE(3747), + [sym_impl_item] = STATE(1305), + [sym_trait_item] = STATE(1305), + [sym_associated_type] = STATE(1305), + [sym_let_declaration] = STATE(1305), + [sym_use_declaration] = STATE(1305), + [sym_extern_modifier] = STATE(2250), + [sym_visibility_modifier] = STATE(2009), + [sym_bracketed_type] = STATE(3696), + [sym_generic_type_with_turbofish] = STATE(3770), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(3191), + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [aux_sym_declaration_list_repeat1] = STATE(639), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_u8] = ACTIONS(2536), + [anon_sym_i8] = ACTIONS(2536), + [anon_sym_u16] = ACTIONS(2536), + [anon_sym_i16] = ACTIONS(2536), + [anon_sym_u32] = ACTIONS(2536), + [anon_sym_i32] = ACTIONS(2536), + [anon_sym_u64] = ACTIONS(2536), + [anon_sym_i64] = ACTIONS(2536), + [anon_sym_u128] = ACTIONS(2536), + [anon_sym_i128] = ACTIONS(2536), + [anon_sym_isize] = ACTIONS(2536), + [anon_sym_usize] = ACTIONS(2536), + [anon_sym_f32] = ACTIONS(2536), + [anon_sym_f64] = ACTIONS(2536), + [anon_sym_bool] = ACTIONS(2536), + [anon_sym_str] = ACTIONS(2536), + [anon_sym_char] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2546), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2550), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2566), + [anon_sym_unsafe] = ACTIONS(2568), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2578), + }, + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2680), [sym_identifier] = ACTIONS(2682), [anon_sym_SEMI] = ACTIONS(2680), @@ -88895,9 +87037,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2680), [sym_float_literal] = ACTIONS(2680), }, - [STATE(710)] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2684), [sym_identifier] = ACTIONS(2686), [anon_sym_SEMI] = ACTIONS(2684), @@ -88976,9 +87118,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2684), [sym_float_literal] = ACTIONS(2684), }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2688), [sym_identifier] = ACTIONS(2690), [anon_sym_SEMI] = ACTIONS(2688), @@ -89057,9 +87199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2688), [sym_float_literal] = ACTIONS(2688), }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2692), [sym_identifier] = ACTIONS(2694), [anon_sym_SEMI] = ACTIONS(2692), @@ -89138,738 +87280,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2692), [sym_float_literal] = ACTIONS(2692), }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_macro_rules_BANG] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_u8] = ACTIONS(2698), - [anon_sym_i8] = ACTIONS(2698), - [anon_sym_u16] = ACTIONS(2698), - [anon_sym_i16] = ACTIONS(2698), - [anon_sym_u32] = ACTIONS(2698), - [anon_sym_i32] = ACTIONS(2698), - [anon_sym_u64] = ACTIONS(2698), - [anon_sym_i64] = ACTIONS(2698), - [anon_sym_u128] = ACTIONS(2698), - [anon_sym_i128] = ACTIONS(2698), - [anon_sym_isize] = ACTIONS(2698), - [anon_sym_usize] = ACTIONS(2698), - [anon_sym_f32] = ACTIONS(2698), - [anon_sym_f64] = ACTIONS(2698), - [anon_sym_bool] = ACTIONS(2698), - [anon_sym_str] = ACTIONS(2698), - [anon_sym_char] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2696), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_async] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_fn] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_gen] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_impl] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_loop] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2698), - [anon_sym_mod] = ACTIONS(2698), - [anon_sym_pub] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_trait] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_unsafe] = ACTIONS(2698), - [anon_sym_use] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2698), - [anon_sym_move] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [sym_integer_literal] = ACTIONS(2696), - [aux_sym_string_literal_token1] = ACTIONS(2696), - [sym_char_literal] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2698), - [sym_super] = ACTIONS(2698), - [sym_crate] = ACTIONS(2698), - [sym_metavariable] = ACTIONS(2696), - [sym__raw_string_literal_start] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), + [STATE(690)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3391), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_macro_rules_BANG] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_u8] = ACTIONS(2702), - [anon_sym_i8] = ACTIONS(2702), - [anon_sym_u16] = ACTIONS(2702), - [anon_sym_i16] = ACTIONS(2702), - [anon_sym_u32] = ACTIONS(2702), - [anon_sym_i32] = ACTIONS(2702), - [anon_sym_u64] = ACTIONS(2702), - [anon_sym_i64] = ACTIONS(2702), - [anon_sym_u128] = ACTIONS(2702), - [anon_sym_i128] = ACTIONS(2702), - [anon_sym_isize] = ACTIONS(2702), - [anon_sym_usize] = ACTIONS(2702), - [anon_sym_f32] = ACTIONS(2702), - [anon_sym_f64] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_str] = ACTIONS(2702), - [anon_sym_char] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2702), - [anon_sym_async] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_fn] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_gen] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_impl] = ACTIONS(2702), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_loop] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2702), - [anon_sym_mod] = ACTIONS(2702), - [anon_sym_pub] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_trait] = ACTIONS(2702), - [anon_sym_type] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_unsafe] = ACTIONS(2702), - [anon_sym_use] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym_yield] = ACTIONS(2702), - [anon_sym_move] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [sym_integer_literal] = ACTIONS(2700), - [aux_sym_string_literal_token1] = ACTIONS(2700), - [sym_char_literal] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2702), - [sym_super] = ACTIONS(2702), - [sym_crate] = ACTIONS(2702), - [sym_metavariable] = ACTIONS(2700), - [sym__raw_string_literal_start] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_macro_rules_BANG] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_u8] = ACTIONS(2700), + [anon_sym_i8] = ACTIONS(2700), + [anon_sym_u16] = ACTIONS(2700), + [anon_sym_i16] = ACTIONS(2700), + [anon_sym_u32] = ACTIONS(2700), + [anon_sym_i32] = ACTIONS(2700), + [anon_sym_u64] = ACTIONS(2700), + [anon_sym_i64] = ACTIONS(2700), + [anon_sym_u128] = ACTIONS(2700), + [anon_sym_i128] = ACTIONS(2700), + [anon_sym_isize] = ACTIONS(2700), + [anon_sym_usize] = ACTIONS(2700), + [anon_sym_f32] = ACTIONS(2700), + [anon_sym_f64] = ACTIONS(2700), + [anon_sym_bool] = ACTIONS(2700), + [anon_sym_str] = ACTIONS(2700), + [anon_sym_char] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_COLON_COLON] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_gen] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_impl] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_mod] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_trait] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_move] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [sym_integer_literal] = ACTIONS(2698), + [aux_sym_string_literal_token1] = ACTIONS(2698), + [sym_char_literal] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_crate] = ACTIONS(2700), + [sym_metavariable] = ACTIONS(2698), + [sym__raw_string_literal_start] = ACTIONS(2698), + [sym_float_literal] = ACTIONS(2698), }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_macro_rules_BANG] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_u8] = ACTIONS(2706), - [anon_sym_i8] = ACTIONS(2706), - [anon_sym_u16] = ACTIONS(2706), - [anon_sym_i16] = ACTIONS(2706), - [anon_sym_u32] = ACTIONS(2706), - [anon_sym_i32] = ACTIONS(2706), - [anon_sym_u64] = ACTIONS(2706), - [anon_sym_i64] = ACTIONS(2706), - [anon_sym_u128] = ACTIONS(2706), - [anon_sym_i128] = ACTIONS(2706), - [anon_sym_isize] = ACTIONS(2706), - [anon_sym_usize] = ACTIONS(2706), - [anon_sym_f32] = ACTIONS(2706), - [anon_sym_f64] = ACTIONS(2706), - [anon_sym_bool] = ACTIONS(2706), - [anon_sym_str] = ACTIONS(2706), - [anon_sym_char] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_DOT_DOT] = ACTIONS(2704), - [anon_sym_COLON_COLON] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_fn] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_gen] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_impl] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_loop] = ACTIONS(2706), - [anon_sym_match] = ACTIONS(2706), - [anon_sym_mod] = ACTIONS(2706), - [anon_sym_pub] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_struct] = ACTIONS(2706), - [anon_sym_trait] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_union] = ACTIONS(2706), - [anon_sym_unsafe] = ACTIONS(2706), - [anon_sym_use] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_move] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [sym_integer_literal] = ACTIONS(2704), - [aux_sym_string_literal_token1] = ACTIONS(2704), - [sym_char_literal] = ACTIONS(2704), - [anon_sym_true] = ACTIONS(2706), - [anon_sym_false] = ACTIONS(2706), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_crate] = ACTIONS(2706), - [sym_metavariable] = ACTIONS(2704), - [sym__raw_string_literal_start] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), + [STATE(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_macro_rules_BANG] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u128] = ACTIONS(2704), + [anon_sym_i128] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_str] = ACTIONS(2704), + [anon_sym_char] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_COLON_COLON] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2704), + [anon_sym_async] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_gen] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_impl] = ACTIONS(2704), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_loop] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_mod] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_trait] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_use] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_move] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [sym_integer_literal] = ACTIONS(2702), + [aux_sym_string_literal_token1] = ACTIONS(2702), + [sym_char_literal] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2704), + [sym_super] = ACTIONS(2704), + [sym_crate] = ACTIONS(2704), + [sym_metavariable] = ACTIONS(2702), + [sym__raw_string_literal_start] = ACTIONS(2702), + [sym_float_literal] = ACTIONS(2702), }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_macro_rules_BANG] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_u8] = ACTIONS(2710), - [anon_sym_i8] = ACTIONS(2710), - [anon_sym_u16] = ACTIONS(2710), - [anon_sym_i16] = ACTIONS(2710), - [anon_sym_u32] = ACTIONS(2710), - [anon_sym_i32] = ACTIONS(2710), - [anon_sym_u64] = ACTIONS(2710), - [anon_sym_i64] = ACTIONS(2710), - [anon_sym_u128] = ACTIONS(2710), - [anon_sym_i128] = ACTIONS(2710), - [anon_sym_isize] = ACTIONS(2710), - [anon_sym_usize] = ACTIONS(2710), - [anon_sym_f32] = ACTIONS(2710), - [anon_sym_f64] = ACTIONS(2710), - [anon_sym_bool] = ACTIONS(2710), - [anon_sym_str] = ACTIONS(2710), - [anon_sym_char] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2708), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2708), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_gen] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_impl] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_loop] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_mod] = ACTIONS(2710), - [anon_sym_pub] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_trait] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_use] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_move] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [sym_integer_literal] = ACTIONS(2708), - [aux_sym_string_literal_token1] = ACTIONS(2708), - [sym_char_literal] = ACTIONS(2708), - [anon_sym_true] = ACTIONS(2710), - [anon_sym_false] = ACTIONS(2710), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_crate] = ACTIONS(2710), - [sym_metavariable] = ACTIONS(2708), - [sym__raw_string_literal_start] = ACTIONS(2708), - [sym_float_literal] = ACTIONS(2708), + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_macro_rules_BANG] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u128] = ACTIONS(2708), + [anon_sym_i128] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_str] = ACTIONS(2708), + [anon_sym_char] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_DOT_DOT] = ACTIONS(2706), + [anon_sym_COLON_COLON] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_async] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_fn] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_gen] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_impl] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_loop] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_mod] = ACTIONS(2708), + [anon_sym_pub] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_trait] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_unsafe] = ACTIONS(2708), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_move] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [sym_integer_literal] = ACTIONS(2706), + [aux_sym_string_literal_token1] = ACTIONS(2706), + [sym_char_literal] = ACTIONS(2706), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2708), + [sym_super] = ACTIONS(2708), + [sym_crate] = ACTIONS(2708), + [sym_metavariable] = ACTIONS(2706), + [sym__raw_string_literal_start] = ACTIONS(2706), + [sym_float_literal] = ACTIONS(2706), }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_macro_rules_BANG] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_u8] = ACTIONS(2714), - [anon_sym_i8] = ACTIONS(2714), - [anon_sym_u16] = ACTIONS(2714), - [anon_sym_i16] = ACTIONS(2714), - [anon_sym_u32] = ACTIONS(2714), - [anon_sym_i32] = ACTIONS(2714), - [anon_sym_u64] = ACTIONS(2714), - [anon_sym_i64] = ACTIONS(2714), - [anon_sym_u128] = ACTIONS(2714), - [anon_sym_i128] = ACTIONS(2714), - [anon_sym_isize] = ACTIONS(2714), - [anon_sym_usize] = ACTIONS(2714), - [anon_sym_f32] = ACTIONS(2714), - [anon_sym_f64] = ACTIONS(2714), - [anon_sym_bool] = ACTIONS(2714), - [anon_sym_str] = ACTIONS(2714), - [anon_sym_char] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2712), - [anon_sym_DOT_DOT] = ACTIONS(2712), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2714), - [anon_sym_async] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_gen] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_impl] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_loop] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_mod] = ACTIONS(2714), - [anon_sym_pub] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_trait] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_union] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_extern] = ACTIONS(2714), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_move] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [sym_integer_literal] = ACTIONS(2712), - [aux_sym_string_literal_token1] = ACTIONS(2712), - [sym_char_literal] = ACTIONS(2712), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2714), - [sym_super] = ACTIONS(2714), - [sym_crate] = ACTIONS(2714), - [sym_metavariable] = ACTIONS(2712), - [sym__raw_string_literal_start] = ACTIONS(2712), - [sym_float_literal] = ACTIONS(2712), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_macro_rules_BANG] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u128] = ACTIONS(2712), + [anon_sym_i128] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_str] = ACTIONS(2712), + [anon_sym_char] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_fn] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_gen] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_impl] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_loop] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_mod] = ACTIONS(2712), + [anon_sym_pub] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_trait] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(2712), + [anon_sym_use] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_move] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [sym_integer_literal] = ACTIONS(2710), + [aux_sym_string_literal_token1] = ACTIONS(2710), + [sym_char_literal] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_crate] = ACTIONS(2712), + [sym_metavariable] = ACTIONS(2710), + [sym__raw_string_literal_start] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_macro_rules_BANG] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_u8] = ACTIONS(2718), - [anon_sym_i8] = ACTIONS(2718), - [anon_sym_u16] = ACTIONS(2718), - [anon_sym_i16] = ACTIONS(2718), - [anon_sym_u32] = ACTIONS(2718), - [anon_sym_i32] = ACTIONS(2718), - [anon_sym_u64] = ACTIONS(2718), - [anon_sym_i64] = ACTIONS(2718), - [anon_sym_u128] = ACTIONS(2718), - [anon_sym_i128] = ACTIONS(2718), - [anon_sym_isize] = ACTIONS(2718), - [anon_sym_usize] = ACTIONS(2718), - [anon_sym_f32] = ACTIONS(2718), - [anon_sym_f64] = ACTIONS(2718), - [anon_sym_bool] = ACTIONS(2718), - [anon_sym_str] = ACTIONS(2718), - [anon_sym_char] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_COLON_COLON] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2718), - [anon_sym_async] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_gen] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_impl] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_loop] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_mod] = ACTIONS(2718), - [anon_sym_pub] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_trait] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_union] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_use] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_extern] = ACTIONS(2718), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_move] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [sym_integer_literal] = ACTIONS(2716), - [aux_sym_string_literal_token1] = ACTIONS(2716), - [sym_char_literal] = ACTIONS(2716), - [anon_sym_true] = ACTIONS(2718), - [anon_sym_false] = ACTIONS(2718), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2718), - [sym_super] = ACTIONS(2718), - [sym_crate] = ACTIONS(2718), - [sym_metavariable] = ACTIONS(2716), - [sym__raw_string_literal_start] = ACTIONS(2716), - [sym_float_literal] = ACTIONS(2716), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_macro_rules_BANG] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u128] = ACTIONS(2716), + [anon_sym_i128] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_str] = ACTIONS(2716), + [anon_sym_char] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_DOT_DOT] = ACTIONS(2714), + [anon_sym_COLON_COLON] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_async] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_fn] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_gen] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_impl] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_loop] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_mod] = ACTIONS(2716), + [anon_sym_pub] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_trait] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_use] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_move] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [sym_integer_literal] = ACTIONS(2714), + [aux_sym_string_literal_token1] = ACTIONS(2714), + [sym_char_literal] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2716), + [sym_super] = ACTIONS(2716), + [sym_crate] = ACTIONS(2716), + [sym_metavariable] = ACTIONS(2714), + [sym__raw_string_literal_start] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2720), - [sym_identifier] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_macro_rules_BANG] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_RBRACE] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(2720), - [anon_sym_u8] = ACTIONS(2722), - [anon_sym_i8] = ACTIONS(2722), - [anon_sym_u16] = ACTIONS(2722), - [anon_sym_i16] = ACTIONS(2722), - [anon_sym_u32] = ACTIONS(2722), - [anon_sym_i32] = ACTIONS(2722), - [anon_sym_u64] = ACTIONS(2722), - [anon_sym_i64] = ACTIONS(2722), - [anon_sym_u128] = ACTIONS(2722), - [anon_sym_i128] = ACTIONS(2722), - [anon_sym_isize] = ACTIONS(2722), - [anon_sym_usize] = ACTIONS(2722), - [anon_sym_f32] = ACTIONS(2722), - [anon_sym_f64] = ACTIONS(2722), - [anon_sym_bool] = ACTIONS(2722), - [anon_sym_str] = ACTIONS(2722), - [anon_sym_char] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_AMP] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_LT] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2720), - [anon_sym_COLON_COLON] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2722), - [anon_sym_async] = ACTIONS(2722), - [anon_sym_break] = ACTIONS(2722), - [anon_sym_const] = ACTIONS(2722), - [anon_sym_continue] = ACTIONS(2722), - [anon_sym_default] = ACTIONS(2722), - [anon_sym_enum] = ACTIONS(2722), - [anon_sym_fn] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_gen] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_impl] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_loop] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2722), - [anon_sym_mod] = ACTIONS(2722), - [anon_sym_pub] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_struct] = ACTIONS(2722), - [anon_sym_trait] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_union] = ACTIONS(2722), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_use] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_extern] = ACTIONS(2722), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_move] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [sym_integer_literal] = ACTIONS(2720), - [aux_sym_string_literal_token1] = ACTIONS(2720), - [sym_char_literal] = ACTIONS(2720), - [anon_sym_true] = ACTIONS(2722), - [anon_sym_false] = ACTIONS(2722), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2722), - [sym_super] = ACTIONS(2722), - [sym_crate] = ACTIONS(2722), - [sym_metavariable] = ACTIONS(2720), - [sym__raw_string_literal_start] = ACTIONS(2720), - [sym_float_literal] = ACTIONS(2720), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_macro_rules_BANG] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_u8] = ACTIONS(2720), + [anon_sym_i8] = ACTIONS(2720), + [anon_sym_u16] = ACTIONS(2720), + [anon_sym_i16] = ACTIONS(2720), + [anon_sym_u32] = ACTIONS(2720), + [anon_sym_i32] = ACTIONS(2720), + [anon_sym_u64] = ACTIONS(2720), + [anon_sym_i64] = ACTIONS(2720), + [anon_sym_u128] = ACTIONS(2720), + [anon_sym_i128] = ACTIONS(2720), + [anon_sym_isize] = ACTIONS(2720), + [anon_sym_usize] = ACTIONS(2720), + [anon_sym_f32] = ACTIONS(2720), + [anon_sym_f64] = ACTIONS(2720), + [anon_sym_bool] = ACTIONS(2720), + [anon_sym_str] = ACTIONS(2720), + [anon_sym_char] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(2718), + [anon_sym_COLON_COLON] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_async] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_fn] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_gen] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_impl] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_loop] = ACTIONS(2720), + [anon_sym_match] = ACTIONS(2720), + [anon_sym_mod] = ACTIONS(2720), + [anon_sym_pub] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_trait] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_unsafe] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2720), + [anon_sym_move] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [sym_integer_literal] = ACTIONS(2718), + [aux_sym_string_literal_token1] = ACTIONS(2718), + [sym_char_literal] = ACTIONS(2718), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2720), + [sym_super] = ACTIONS(2720), + [sym_crate] = ACTIONS(2720), + [sym_metavariable] = ACTIONS(2718), + [sym__raw_string_literal_start] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), }, - [STATE(720)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3748), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_macro_rules_BANG] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_u8] = ACTIONS(2724), + [anon_sym_i8] = ACTIONS(2724), + [anon_sym_u16] = ACTIONS(2724), + [anon_sym_i16] = ACTIONS(2724), + [anon_sym_u32] = ACTIONS(2724), + [anon_sym_i32] = ACTIONS(2724), + [anon_sym_u64] = ACTIONS(2724), + [anon_sym_i64] = ACTIONS(2724), + [anon_sym_u128] = ACTIONS(2724), + [anon_sym_i128] = ACTIONS(2724), + [anon_sym_isize] = ACTIONS(2724), + [anon_sym_usize] = ACTIONS(2724), + [anon_sym_f32] = ACTIONS(2724), + [anon_sym_f64] = ACTIONS(2724), + [anon_sym_bool] = ACTIONS(2724), + [anon_sym_str] = ACTIONS(2724), + [anon_sym_char] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2722), + [anon_sym_DOT_DOT] = ACTIONS(2722), + [anon_sym_COLON_COLON] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2724), + [anon_sym_async] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_gen] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_impl] = ACTIONS(2724), + [anon_sym_let] = ACTIONS(2724), + [anon_sym_loop] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_mod] = ACTIONS(2724), + [anon_sym_pub] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_trait] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_use] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_yield] = ACTIONS(2724), + [anon_sym_move] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2724), + [sym_integer_literal] = ACTIONS(2722), + [aux_sym_string_literal_token1] = ACTIONS(2722), + [sym_char_literal] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2724), + [sym_super] = ACTIONS(2724), + [sym_crate] = ACTIONS(2724), + [sym_metavariable] = ACTIONS(2722), + [sym__raw_string_literal_start] = ACTIONS(2722), + [sym_float_literal] = ACTIONS(2722), }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2724), - [sym_identifier] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_macro_rules_BANG] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_u8] = ACTIONS(2726), - [anon_sym_i8] = ACTIONS(2726), - [anon_sym_u16] = ACTIONS(2726), - [anon_sym_i16] = ACTIONS(2726), - [anon_sym_u32] = ACTIONS(2726), - [anon_sym_i32] = ACTIONS(2726), - [anon_sym_u64] = ACTIONS(2726), - [anon_sym_i64] = ACTIONS(2726), - [anon_sym_u128] = ACTIONS(2726), - [anon_sym_i128] = ACTIONS(2726), - [anon_sym_isize] = ACTIONS(2726), - [anon_sym_usize] = ACTIONS(2726), - [anon_sym_f32] = ACTIONS(2726), - [anon_sym_f64] = ACTIONS(2726), - [anon_sym_bool] = ACTIONS(2726), - [anon_sym_str] = ACTIONS(2726), - [anon_sym_char] = ACTIONS(2726), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_DOT_DOT] = ACTIONS(2724), - [anon_sym_COLON_COLON] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2726), - [anon_sym_async] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_default] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), - [anon_sym_fn] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_gen] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_impl] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2726), - [anon_sym_loop] = ACTIONS(2726), - [anon_sym_match] = ACTIONS(2726), - [anon_sym_mod] = ACTIONS(2726), - [anon_sym_pub] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2726), - [anon_sym_trait] = ACTIONS(2726), - [anon_sym_type] = ACTIONS(2726), - [anon_sym_union] = ACTIONS(2726), - [anon_sym_unsafe] = ACTIONS(2726), - [anon_sym_use] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_extern] = ACTIONS(2726), - [anon_sym_yield] = ACTIONS(2726), - [anon_sym_move] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [sym_integer_literal] = ACTIONS(2724), - [aux_sym_string_literal_token1] = ACTIONS(2724), - [sym_char_literal] = ACTIONS(2724), - [anon_sym_true] = ACTIONS(2726), - [anon_sym_false] = ACTIONS(2726), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2726), - [sym_super] = ACTIONS(2726), - [sym_crate] = ACTIONS(2726), - [sym_metavariable] = ACTIONS(2724), - [sym__raw_string_literal_start] = ACTIONS(2724), - [sym_float_literal] = ACTIONS(2724), + [STATE(698)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3391), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2726), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2728), [sym_identifier] = ACTIONS(2730), [anon_sym_SEMI] = ACTIONS(2728), @@ -89948,9 +88090,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2728), [sym_float_literal] = ACTIONS(2728), }, - [STATE(723)] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2732), [sym_identifier] = ACTIONS(2734), [anon_sym_SEMI] = ACTIONS(2732), @@ -90029,9 +88171,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2732), [sym_float_literal] = ACTIONS(2732), }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2736), [sym_identifier] = ACTIONS(2738), [anon_sym_SEMI] = ACTIONS(2736), @@ -90110,9 +88252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2736), [sym_float_literal] = ACTIONS(2736), }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2740), [sym_identifier] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2740), @@ -90191,9 +88333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2740), [sym_float_literal] = ACTIONS(2740), }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [STATE(703)] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2744), [sym_identifier] = ACTIONS(2746), [anon_sym_SEMI] = ACTIONS(2744), @@ -90272,9 +88414,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2744), [sym_float_literal] = ACTIONS(2744), }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [ts_builtin_sym_end] = ACTIONS(2748), [sym_identifier] = ACTIONS(2750), [anon_sym_SEMI] = ACTIONS(2748), @@ -90353,9 +88495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2748), [sym_float_literal] = ACTIONS(2748), }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), [ts_builtin_sym_end] = ACTIONS(2752), [sym_identifier] = ACTIONS(2754), [anon_sym_SEMI] = ACTIONS(2752), @@ -90434,9 +88576,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2752), [sym_float_literal] = ACTIONS(2752), }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [STATE(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(2756), [sym_identifier] = ACTIONS(2758), [anon_sym_SEMI] = ACTIONS(2756), @@ -90515,9 +88657,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2756), [sym_float_literal] = ACTIONS(2756), }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2760), [sym_identifier] = ACTIONS(2762), [anon_sym_SEMI] = ACTIONS(2760), @@ -90596,9 +88738,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2760), [sym_float_literal] = ACTIONS(2760), }, - [STATE(731)] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2764), [sym_identifier] = ACTIONS(2766), [anon_sym_SEMI] = ACTIONS(2764), @@ -90677,9 +88819,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2764), [sym_float_literal] = ACTIONS(2764), }, - [STATE(732)] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2768), [sym_identifier] = ACTIONS(2770), [anon_sym_SEMI] = ACTIONS(2768), @@ -90758,9 +88900,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2768), [sym_float_literal] = ACTIONS(2768), }, - [STATE(733)] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [STATE(710)] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2772), [sym_identifier] = ACTIONS(2774), [anon_sym_SEMI] = ACTIONS(2772), @@ -90839,9 +88981,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2772), [sym_float_literal] = ACTIONS(2772), }, - [STATE(734)] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2776), @@ -90920,9 +89062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2776), [sym_float_literal] = ACTIONS(2776), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2780), [sym_identifier] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2780), @@ -91001,9 +89143,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2780), [sym_float_literal] = ACTIONS(2780), }, - [STATE(736)] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [STATE(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2784), [sym_identifier] = ACTIONS(2786), [anon_sym_SEMI] = ACTIONS(2784), @@ -91082,9 +89224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2784), [sym_float_literal] = ACTIONS(2784), }, - [STATE(737)] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2788), [sym_identifier] = ACTIONS(2790), [anon_sym_SEMI] = ACTIONS(2788), @@ -91163,9 +89305,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2788), [sym_float_literal] = ACTIONS(2788), }, - [STATE(738)] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2792), [sym_identifier] = ACTIONS(2794), [anon_sym_SEMI] = ACTIONS(2792), @@ -91244,9 +89386,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2792), [sym_float_literal] = ACTIONS(2792), }, - [STATE(739)] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2796), [sym_identifier] = ACTIONS(2798), [anon_sym_SEMI] = ACTIONS(2796), @@ -91325,9 +89467,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2796), [sym_float_literal] = ACTIONS(2796), }, - [STATE(740)] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [STATE(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), [ts_builtin_sym_end] = ACTIONS(2800), [sym_identifier] = ACTIONS(2802), [anon_sym_SEMI] = ACTIONS(2800), @@ -91406,9 +89548,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2800), [sym_float_literal] = ACTIONS(2800), }, - [STATE(741)] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2804), [sym_identifier] = ACTIONS(2806), [anon_sym_SEMI] = ACTIONS(2804), @@ -91487,9 +89629,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2804), [sym_float_literal] = ACTIONS(2804), }, - [STATE(742)] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2808), [sym_identifier] = ACTIONS(2810), [anon_sym_SEMI] = ACTIONS(2808), @@ -91568,9 +89710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2808), [sym_float_literal] = ACTIONS(2808), }, - [STATE(743)] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2812), [sym_identifier] = ACTIONS(2814), [anon_sym_SEMI] = ACTIONS(2812), @@ -91649,9 +89791,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2812), [sym_float_literal] = ACTIONS(2812), }, - [STATE(744)] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2816), [sym_identifier] = ACTIONS(2818), [anon_sym_SEMI] = ACTIONS(2816), @@ -91730,9 +89872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2816), [sym_float_literal] = ACTIONS(2816), }, - [STATE(745)] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2820), [sym_identifier] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2820), @@ -91811,9 +89953,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2820), [sym_float_literal] = ACTIONS(2820), }, - [STATE(746)] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_macro_rules_BANG] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_async] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_impl] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_loop] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_mod] = ACTIONS(1541), + [anon_sym_pub] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_trait] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_unsafe] = ACTIONS(1541), + [anon_sym_use] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), + }, + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2824), [sym_identifier] = ACTIONS(2826), [anon_sym_SEMI] = ACTIONS(2824), @@ -91892,248 +90115,2030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2824), [sym_float_literal] = ACTIONS(2824), }, - [STATE(747)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_u8] = ACTIONS(2839), - [anon_sym_i8] = ACTIONS(2839), - [anon_sym_u16] = ACTIONS(2839), - [anon_sym_i16] = ACTIONS(2839), - [anon_sym_u32] = ACTIONS(2839), - [anon_sym_i32] = ACTIONS(2839), - [anon_sym_u64] = ACTIONS(2839), - [anon_sym_i64] = ACTIONS(2839), - [anon_sym_u128] = ACTIONS(2839), - [anon_sym_i128] = ACTIONS(2839), - [anon_sym_isize] = ACTIONS(2839), - [anon_sym_usize] = ACTIONS(2839), - [anon_sym_f32] = ACTIONS(2839), - [anon_sym_f64] = ACTIONS(2839), - [anon_sym_bool] = ACTIONS(2839), - [anon_sym_str] = ACTIONS(2839), - [anon_sym_char] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2845), + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym_macro_rules_BANG] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_u8] = ACTIONS(2830), + [anon_sym_i8] = ACTIONS(2830), + [anon_sym_u16] = ACTIONS(2830), + [anon_sym_i16] = ACTIONS(2830), + [anon_sym_u32] = ACTIONS(2830), + [anon_sym_i32] = ACTIONS(2830), + [anon_sym_u64] = ACTIONS(2830), + [anon_sym_i64] = ACTIONS(2830), + [anon_sym_u128] = ACTIONS(2830), + [anon_sym_i128] = ACTIONS(2830), + [anon_sym_isize] = ACTIONS(2830), + [anon_sym_usize] = ACTIONS(2830), + [anon_sym_f32] = ACTIONS(2830), + [anon_sym_f64] = ACTIONS(2830), + [anon_sym_bool] = ACTIONS(2830), + [anon_sym_str] = ACTIONS(2830), + [anon_sym_char] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_DOT_DOT] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_gen] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_impl] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2830), + [anon_sym_loop] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_mod] = ACTIONS(2830), + [anon_sym_pub] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_trait] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_use] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym_yield] = ACTIONS(2830), + [anon_sym_move] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [sym_integer_literal] = ACTIONS(2828), + [aux_sym_string_literal_token1] = ACTIONS(2828), + [sym_char_literal] = ACTIONS(2828), + [anon_sym_true] = ACTIONS(2830), + [anon_sym_false] = ACTIONS(2830), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2830), + [sym_super] = ACTIONS(2830), + [sym_crate] = ACTIONS(2830), + [sym_metavariable] = ACTIONS(2828), + [sym__raw_string_literal_start] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2828), + }, + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_macro_rules_BANG] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_u8] = ACTIONS(2834), + [anon_sym_i8] = ACTIONS(2834), + [anon_sym_u16] = ACTIONS(2834), + [anon_sym_i16] = ACTIONS(2834), + [anon_sym_u32] = ACTIONS(2834), + [anon_sym_i32] = ACTIONS(2834), + [anon_sym_u64] = ACTIONS(2834), + [anon_sym_i64] = ACTIONS(2834), + [anon_sym_u128] = ACTIONS(2834), + [anon_sym_i128] = ACTIONS(2834), + [anon_sym_isize] = ACTIONS(2834), + [anon_sym_usize] = ACTIONS(2834), + [anon_sym_f32] = ACTIONS(2834), + [anon_sym_f64] = ACTIONS(2834), + [anon_sym_bool] = ACTIONS(2834), + [anon_sym_str] = ACTIONS(2834), + [anon_sym_char] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_async] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_gen] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_impl] = ACTIONS(2834), + [anon_sym_let] = ACTIONS(2834), + [anon_sym_loop] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_mod] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_trait] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_use] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym_yield] = ACTIONS(2834), + [anon_sym_move] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [sym_integer_literal] = ACTIONS(2832), + [aux_sym_string_literal_token1] = ACTIONS(2832), + [sym_char_literal] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2834), + [anon_sym_false] = ACTIONS(2834), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2834), + [sym_super] = ACTIONS(2834), + [sym_crate] = ACTIONS(2834), + [sym_metavariable] = ACTIONS(2832), + [sym__raw_string_literal_start] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2832), + }, + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_macro_rules_BANG] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_u8] = ACTIONS(2838), + [anon_sym_i8] = ACTIONS(2838), + [anon_sym_u16] = ACTIONS(2838), + [anon_sym_i16] = ACTIONS(2838), + [anon_sym_u32] = ACTIONS(2838), + [anon_sym_i32] = ACTIONS(2838), + [anon_sym_u64] = ACTIONS(2838), + [anon_sym_i64] = ACTIONS(2838), + [anon_sym_u128] = ACTIONS(2838), + [anon_sym_i128] = ACTIONS(2838), + [anon_sym_isize] = ACTIONS(2838), + [anon_sym_usize] = ACTIONS(2838), + [anon_sym_f32] = ACTIONS(2838), + [anon_sym_f64] = ACTIONS(2838), + [anon_sym_bool] = ACTIONS(2838), + [anon_sym_str] = ACTIONS(2838), + [anon_sym_char] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_DOT_DOT] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_async] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_gen] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_impl] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2838), + [anon_sym_loop] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_mod] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_trait] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_use] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym_yield] = ACTIONS(2838), + [anon_sym_move] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [sym_integer_literal] = ACTIONS(2836), + [aux_sym_string_literal_token1] = ACTIONS(2836), + [sym_char_literal] = ACTIONS(2836), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2838), + [sym_super] = ACTIONS(2838), + [sym_crate] = ACTIONS(2838), + [sym_metavariable] = ACTIONS(2836), + [sym__raw_string_literal_start] = ACTIONS(2836), + [sym_float_literal] = ACTIONS(2836), + }, + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_macro_rules_BANG] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_u8] = ACTIONS(2842), + [anon_sym_i8] = ACTIONS(2842), + [anon_sym_u16] = ACTIONS(2842), + [anon_sym_i16] = ACTIONS(2842), + [anon_sym_u32] = ACTIONS(2842), + [anon_sym_i32] = ACTIONS(2842), + [anon_sym_u64] = ACTIONS(2842), + [anon_sym_i64] = ACTIONS(2842), + [anon_sym_u128] = ACTIONS(2842), + [anon_sym_i128] = ACTIONS(2842), + [anon_sym_isize] = ACTIONS(2842), + [anon_sym_usize] = ACTIONS(2842), + [anon_sym_f32] = ACTIONS(2842), + [anon_sym_f64] = ACTIONS(2842), + [anon_sym_bool] = ACTIONS(2842), + [anon_sym_str] = ACTIONS(2842), + [anon_sym_char] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_async] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_gen] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_impl] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2842), + [anon_sym_loop] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_mod] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_static] = ACTIONS(2842), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_trait] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_use] = ACTIONS(2842), + [anon_sym_while] = ACTIONS(2842), + [anon_sym_extern] = ACTIONS(2842), + [anon_sym_yield] = ACTIONS(2842), + [anon_sym_move] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2842), + [sym_integer_literal] = ACTIONS(2840), + [aux_sym_string_literal_token1] = ACTIONS(2840), + [sym_char_literal] = ACTIONS(2840), + [anon_sym_true] = ACTIONS(2842), + [anon_sym_false] = ACTIONS(2842), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2842), + [sym_super] = ACTIONS(2842), + [sym_crate] = ACTIONS(2842), + [sym_metavariable] = ACTIONS(2840), + [sym__raw_string_literal_start] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), + }, + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_macro_rules_BANG] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_u8] = ACTIONS(2846), + [anon_sym_i8] = ACTIONS(2846), + [anon_sym_u16] = ACTIONS(2846), + [anon_sym_i16] = ACTIONS(2846), + [anon_sym_u32] = ACTIONS(2846), + [anon_sym_i32] = ACTIONS(2846), + [anon_sym_u64] = ACTIONS(2846), + [anon_sym_i64] = ACTIONS(2846), + [anon_sym_u128] = ACTIONS(2846), + [anon_sym_i128] = ACTIONS(2846), + [anon_sym_isize] = ACTIONS(2846), + [anon_sym_usize] = ACTIONS(2846), + [anon_sym_f32] = ACTIONS(2846), + [anon_sym_f64] = ACTIONS(2846), + [anon_sym_bool] = ACTIONS(2846), + [anon_sym_str] = ACTIONS(2846), + [anon_sym_char] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_DOT_DOT] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_default] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_gen] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2846), + [anon_sym_loop] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_mod] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2846), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_trait] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_use] = ACTIONS(2846), + [anon_sym_while] = ACTIONS(2846), + [anon_sym_extern] = ACTIONS(2846), + [anon_sym_yield] = ACTIONS(2846), + [anon_sym_move] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2846), + [sym_integer_literal] = ACTIONS(2844), + [aux_sym_string_literal_token1] = ACTIONS(2844), + [sym_char_literal] = ACTIONS(2844), + [anon_sym_true] = ACTIONS(2846), + [anon_sym_false] = ACTIONS(2846), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2846), + [sym_super] = ACTIONS(2846), + [sym_crate] = ACTIONS(2846), + [sym_metavariable] = ACTIONS(2844), + [sym__raw_string_literal_start] = ACTIONS(2844), + [sym_float_literal] = ACTIONS(2844), + }, + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_macro_rules_BANG] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2848), + [anon_sym_u8] = ACTIONS(2850), + [anon_sym_i8] = ACTIONS(2850), + [anon_sym_u16] = ACTIONS(2850), + [anon_sym_i16] = ACTIONS(2850), + [anon_sym_u32] = ACTIONS(2850), + [anon_sym_i32] = ACTIONS(2850), + [anon_sym_u64] = ACTIONS(2850), + [anon_sym_i64] = ACTIONS(2850), + [anon_sym_u128] = ACTIONS(2850), + [anon_sym_i128] = ACTIONS(2850), + [anon_sym_isize] = ACTIONS(2850), + [anon_sym_usize] = ACTIONS(2850), + [anon_sym_f32] = ACTIONS(2850), + [anon_sym_f64] = ACTIONS(2850), + [anon_sym_bool] = ACTIONS(2850), + [anon_sym_str] = ACTIONS(2850), + [anon_sym_char] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_DOT_DOT] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2848), [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_async] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_default] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_gen] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_impl] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2850), + [anon_sym_loop] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_mod] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2850), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_trait] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2850), + [anon_sym_while] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2850), + [anon_sym_move] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2850), + [sym_integer_literal] = ACTIONS(2848), + [aux_sym_string_literal_token1] = ACTIONS(2848), + [sym_char_literal] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2850), + [anon_sym_false] = ACTIONS(2850), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2850), + [sym_super] = ACTIONS(2850), + [sym_crate] = ACTIONS(2850), + [sym_metavariable] = ACTIONS(2848), + [sym__raw_string_literal_start] = ACTIONS(2848), + [sym_float_literal] = ACTIONS(2848), + }, + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2852), + [anon_sym_macro_rules_BANG] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_u8] = ACTIONS(2854), + [anon_sym_i8] = ACTIONS(2854), + [anon_sym_u16] = ACTIONS(2854), + [anon_sym_i16] = ACTIONS(2854), + [anon_sym_u32] = ACTIONS(2854), + [anon_sym_i32] = ACTIONS(2854), + [anon_sym_u64] = ACTIONS(2854), + [anon_sym_i64] = ACTIONS(2854), + [anon_sym_u128] = ACTIONS(2854), + [anon_sym_i128] = ACTIONS(2854), + [anon_sym_isize] = ACTIONS(2854), + [anon_sym_usize] = ACTIONS(2854), + [anon_sym_f32] = ACTIONS(2854), + [anon_sym_f64] = ACTIONS(2854), + [anon_sym_bool] = ACTIONS(2854), + [anon_sym_str] = ACTIONS(2854), + [anon_sym_char] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_async] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), [anon_sym_const] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_default] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_gen] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_impl] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2854), + [anon_sym_loop] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_mod] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2854), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_trait] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2854), + [anon_sym_while] = ACTIONS(2854), + [anon_sym_extern] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2854), + [anon_sym_move] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2854), + [sym_integer_literal] = ACTIONS(2852), + [aux_sym_string_literal_token1] = ACTIONS(2852), + [sym_char_literal] = ACTIONS(2852), + [anon_sym_true] = ACTIONS(2854), + [anon_sym_false] = ACTIONS(2854), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2854), + [sym_super] = ACTIONS(2854), + [sym_crate] = ACTIONS(2854), + [sym_metavariable] = ACTIONS(2852), + [sym__raw_string_literal_start] = ACTIONS(2852), + [sym_float_literal] = ACTIONS(2852), + }, + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_macro_rules_BANG] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(2858), + [anon_sym_i8] = ACTIONS(2858), + [anon_sym_u16] = ACTIONS(2858), + [anon_sym_i16] = ACTIONS(2858), + [anon_sym_u32] = ACTIONS(2858), + [anon_sym_i32] = ACTIONS(2858), + [anon_sym_u64] = ACTIONS(2858), + [anon_sym_i64] = ACTIONS(2858), + [anon_sym_u128] = ACTIONS(2858), + [anon_sym_i128] = ACTIONS(2858), + [anon_sym_isize] = ACTIONS(2858), + [anon_sym_usize] = ACTIONS(2858), + [anon_sym_f32] = ACTIONS(2858), + [anon_sym_f64] = ACTIONS(2858), + [anon_sym_bool] = ACTIONS(2858), + [anon_sym_str] = ACTIONS(2858), + [anon_sym_char] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_DOT_DOT] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_async] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_default] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_gen] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_impl] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2858), + [anon_sym_loop] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_mod] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2858), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_trait] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2858), + [anon_sym_while] = ACTIONS(2858), + [anon_sym_extern] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2858), + [anon_sym_move] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2858), + [sym_integer_literal] = ACTIONS(2856), + [aux_sym_string_literal_token1] = ACTIONS(2856), + [sym_char_literal] = ACTIONS(2856), + [anon_sym_true] = ACTIONS(2858), + [anon_sym_false] = ACTIONS(2858), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2858), + [sym_super] = ACTIONS(2858), + [sym_crate] = ACTIONS(2858), + [sym_metavariable] = ACTIONS(2856), + [sym__raw_string_literal_start] = ACTIONS(2856), + [sym_float_literal] = ACTIONS(2856), + }, + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_macro_rules_BANG] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_u8] = ACTIONS(2862), + [anon_sym_i8] = ACTIONS(2862), + [anon_sym_u16] = ACTIONS(2862), + [anon_sym_i16] = ACTIONS(2862), + [anon_sym_u32] = ACTIONS(2862), + [anon_sym_i32] = ACTIONS(2862), + [anon_sym_u64] = ACTIONS(2862), + [anon_sym_i64] = ACTIONS(2862), + [anon_sym_u128] = ACTIONS(2862), + [anon_sym_i128] = ACTIONS(2862), + [anon_sym_isize] = ACTIONS(2862), + [anon_sym_usize] = ACTIONS(2862), + [anon_sym_f32] = ACTIONS(2862), + [anon_sym_f64] = ACTIONS(2862), + [anon_sym_bool] = ACTIONS(2862), + [anon_sym_str] = ACTIONS(2862), + [anon_sym_char] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_gen] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_impl] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_loop] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_mod] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_trait] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_extern] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_move] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [sym_integer_literal] = ACTIONS(2860), + [aux_sym_string_literal_token1] = ACTIONS(2860), + [sym_char_literal] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2862), + [anon_sym_false] = ACTIONS(2862), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2860), + [sym__raw_string_literal_start] = ACTIONS(2860), + [sym_float_literal] = ACTIONS(2860), + }, + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2864), + [anon_sym_macro_rules_BANG] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2864), + [anon_sym_u8] = ACTIONS(2866), + [anon_sym_i8] = ACTIONS(2866), + [anon_sym_u16] = ACTIONS(2866), + [anon_sym_i16] = ACTIONS(2866), + [anon_sym_u32] = ACTIONS(2866), + [anon_sym_i32] = ACTIONS(2866), + [anon_sym_u64] = ACTIONS(2866), + [anon_sym_i64] = ACTIONS(2866), + [anon_sym_u128] = ACTIONS(2866), + [anon_sym_i128] = ACTIONS(2866), + [anon_sym_isize] = ACTIONS(2866), + [anon_sym_usize] = ACTIONS(2866), + [anon_sym_f32] = ACTIONS(2866), + [anon_sym_f64] = ACTIONS(2866), + [anon_sym_bool] = ACTIONS(2866), + [anon_sym_str] = ACTIONS(2866), + [anon_sym_char] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_DOT_DOT] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_default] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), [anon_sym_gen] = ACTIONS(2866), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_impl] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2866), + [anon_sym_loop] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_mod] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_trait] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [anon_sym_extern] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2866), + [anon_sym_move] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2866), + [sym_integer_literal] = ACTIONS(2864), + [aux_sym_string_literal_token1] = ACTIONS(2864), + [sym_char_literal] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2866), + [anon_sym_false] = ACTIONS(2866), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2866), + [sym_super] = ACTIONS(2866), + [sym_crate] = ACTIONS(2866), + [sym_metavariable] = ACTIONS(2864), + [sym__raw_string_literal_start] = ACTIONS(2864), + [sym_float_literal] = ACTIONS(2864), + }, + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_macro_rules_BANG] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2868), + [anon_sym_u8] = ACTIONS(2870), + [anon_sym_i8] = ACTIONS(2870), + [anon_sym_u16] = ACTIONS(2870), + [anon_sym_i16] = ACTIONS(2870), + [anon_sym_u32] = ACTIONS(2870), + [anon_sym_i32] = ACTIONS(2870), + [anon_sym_u64] = ACTIONS(2870), + [anon_sym_i64] = ACTIONS(2870), + [anon_sym_u128] = ACTIONS(2870), + [anon_sym_i128] = ACTIONS(2870), + [anon_sym_isize] = ACTIONS(2870), + [anon_sym_usize] = ACTIONS(2870), + [anon_sym_f32] = ACTIONS(2870), + [anon_sym_f64] = ACTIONS(2870), + [anon_sym_bool] = ACTIONS(2870), + [anon_sym_str] = ACTIONS(2870), + [anon_sym_char] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_DOT_DOT] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_async] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_gen] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_impl] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2870), + [anon_sym_loop] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_mod] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2870), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_trait] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2870), + [anon_sym_extern] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2870), + [anon_sym_move] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2870), + [sym_integer_literal] = ACTIONS(2868), + [aux_sym_string_literal_token1] = ACTIONS(2868), + [sym_char_literal] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2870), + [anon_sym_false] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2870), + [sym_super] = ACTIONS(2870), + [sym_crate] = ACTIONS(2870), + [sym_metavariable] = ACTIONS(2868), + [sym__raw_string_literal_start] = ACTIONS(2868), + [sym_float_literal] = ACTIONS(2868), + }, + [STATE(736)] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_macro_rules_BANG] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_async] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_gen] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_impl] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_loop] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_mod] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_trait] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2874), + [anon_sym_while] = ACTIONS(2874), + [anon_sym_extern] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2874), + [anon_sym_move] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2874), + [sym_integer_literal] = ACTIONS(2872), + [aux_sym_string_literal_token1] = ACTIONS(2872), + [sym_char_literal] = ACTIONS(2872), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2874), + [sym_super] = ACTIONS(2874), + [sym_crate] = ACTIONS(2874), + [sym_metavariable] = ACTIONS(2872), + [sym__raw_string_literal_start] = ACTIONS(2872), + [sym_float_literal] = ACTIONS(2872), + }, + [STATE(737)] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_macro_rules_BANG] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2876), + [anon_sym_u8] = ACTIONS(2878), + [anon_sym_i8] = ACTIONS(2878), + [anon_sym_u16] = ACTIONS(2878), + [anon_sym_i16] = ACTIONS(2878), + [anon_sym_u32] = ACTIONS(2878), + [anon_sym_i32] = ACTIONS(2878), + [anon_sym_u64] = ACTIONS(2878), + [anon_sym_i64] = ACTIONS(2878), + [anon_sym_u128] = ACTIONS(2878), + [anon_sym_i128] = ACTIONS(2878), + [anon_sym_isize] = ACTIONS(2878), + [anon_sym_usize] = ACTIONS(2878), + [anon_sym_f32] = ACTIONS(2878), + [anon_sym_f64] = ACTIONS(2878), + [anon_sym_bool] = ACTIONS(2878), + [anon_sym_str] = ACTIONS(2878), + [anon_sym_char] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_DOT_DOT] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_async] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_gen] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_impl] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_loop] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_mod] = ACTIONS(2878), [anon_sym_pub] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_trait] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2878), + [anon_sym_while] = ACTIONS(2878), + [anon_sym_extern] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2878), + [anon_sym_move] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2878), + [sym_integer_literal] = ACTIONS(2876), + [aux_sym_string_literal_token1] = ACTIONS(2876), + [sym_char_literal] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2878), + [sym_super] = ACTIONS(2878), + [sym_crate] = ACTIONS(2878), + [sym_metavariable] = ACTIONS(2876), + [sym__raw_string_literal_start] = ACTIONS(2876), + [sym_float_literal] = ACTIONS(2876), + }, + [STATE(738)] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_macro_rules_BANG] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_u8] = ACTIONS(2882), + [anon_sym_i8] = ACTIONS(2882), + [anon_sym_u16] = ACTIONS(2882), + [anon_sym_i16] = ACTIONS(2882), + [anon_sym_u32] = ACTIONS(2882), + [anon_sym_i32] = ACTIONS(2882), + [anon_sym_u64] = ACTIONS(2882), + [anon_sym_i64] = ACTIONS(2882), + [anon_sym_u128] = ACTIONS(2882), + [anon_sym_i128] = ACTIONS(2882), + [anon_sym_isize] = ACTIONS(2882), + [anon_sym_usize] = ACTIONS(2882), + [anon_sym_f32] = ACTIONS(2882), + [anon_sym_f64] = ACTIONS(2882), + [anon_sym_bool] = ACTIONS(2882), + [anon_sym_str] = ACTIONS(2882), + [anon_sym_char] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_DOT_DOT] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_gen] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_impl] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2882), + [anon_sym_loop] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_mod] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_trait] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_extern] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2882), + [anon_sym_move] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2882), + [sym_integer_literal] = ACTIONS(2880), + [aux_sym_string_literal_token1] = ACTIONS(2880), + [sym_char_literal] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2882), + [sym_super] = ACTIONS(2882), + [sym_crate] = ACTIONS(2882), + [sym_metavariable] = ACTIONS(2880), + [sym__raw_string_literal_start] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), + }, + [STATE(739)] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_macro_rules_BANG] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_DOT] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_gen] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_impl] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_loop] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_mod] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_trait] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_extern] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_move] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [sym_integer_literal] = ACTIONS(2884), + [aux_sym_string_literal_token1] = ACTIONS(2884), + [sym_char_literal] = ACTIONS(2884), + [anon_sym_true] = ACTIONS(2886), + [anon_sym_false] = ACTIONS(2886), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2884), + [sym__raw_string_literal_start] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2884), + }, + [STATE(740)] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_macro_rules_BANG] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2888), + [anon_sym_u8] = ACTIONS(2890), + [anon_sym_i8] = ACTIONS(2890), + [anon_sym_u16] = ACTIONS(2890), + [anon_sym_i16] = ACTIONS(2890), + [anon_sym_u32] = ACTIONS(2890), + [anon_sym_i32] = ACTIONS(2890), + [anon_sym_u64] = ACTIONS(2890), + [anon_sym_i64] = ACTIONS(2890), + [anon_sym_u128] = ACTIONS(2890), + [anon_sym_i128] = ACTIONS(2890), + [anon_sym_isize] = ACTIONS(2890), + [anon_sym_usize] = ACTIONS(2890), + [anon_sym_f32] = ACTIONS(2890), + [anon_sym_f64] = ACTIONS(2890), + [anon_sym_bool] = ACTIONS(2890), + [anon_sym_str] = ACTIONS(2890), + [anon_sym_char] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2888), + [anon_sym_DOT_DOT] = ACTIONS(2888), + [anon_sym_COLON_COLON] = ACTIONS(2888), + [anon_sym_POUND] = ACTIONS(2888), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_async] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_default] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_gen] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_impl] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2890), + [anon_sym_loop] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_mod] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_trait] = ACTIONS(2890), [anon_sym_type] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_extern] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2890), + [anon_sym_move] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(2890), + [sym_integer_literal] = ACTIONS(2888), + [aux_sym_string_literal_token1] = ACTIONS(2888), + [sym_char_literal] = ACTIONS(2888), + [anon_sym_true] = ACTIONS(2890), + [anon_sym_false] = ACTIONS(2890), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2890), + [sym_super] = ACTIONS(2890), + [sym_crate] = ACTIONS(2890), + [sym_metavariable] = ACTIONS(2888), + [sym__raw_string_literal_start] = ACTIONS(2888), + [sym_float_literal] = ACTIONS(2888), + }, + [STATE(741)] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_u8] = ACTIONS(2894), + [anon_sym_i8] = ACTIONS(2894), + [anon_sym_u16] = ACTIONS(2894), + [anon_sym_i16] = ACTIONS(2894), + [anon_sym_u32] = ACTIONS(2894), + [anon_sym_i32] = ACTIONS(2894), + [anon_sym_u64] = ACTIONS(2894), + [anon_sym_i64] = ACTIONS(2894), + [anon_sym_u128] = ACTIONS(2894), + [anon_sym_i128] = ACTIONS(2894), + [anon_sym_isize] = ACTIONS(2894), + [anon_sym_usize] = ACTIONS(2894), + [anon_sym_f32] = ACTIONS(2894), + [anon_sym_f64] = ACTIONS(2894), + [anon_sym_bool] = ACTIONS(2894), + [anon_sym_str] = ACTIONS(2894), + [anon_sym_char] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_async] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_gen] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_loop] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_mod] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_trait] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2894), + [anon_sym_while] = ACTIONS(2894), + [anon_sym_extern] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2894), + [anon_sym_move] = ACTIONS(2894), + [anon_sym_try] = ACTIONS(2894), + [sym_integer_literal] = ACTIONS(2892), + [aux_sym_string_literal_token1] = ACTIONS(2892), + [sym_char_literal] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2894), + [anon_sym_false] = ACTIONS(2894), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2894), + [sym_super] = ACTIONS(2894), + [sym_crate] = ACTIONS(2894), + [sym_metavariable] = ACTIONS(2892), + [sym__raw_string_literal_start] = ACTIONS(2892), + [sym_float_literal] = ACTIONS(2892), + }, + [STATE(742)] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2896), + [anon_sym_macro_rules_BANG] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2896), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_u8] = ACTIONS(2898), + [anon_sym_i8] = ACTIONS(2898), + [anon_sym_u16] = ACTIONS(2898), + [anon_sym_i16] = ACTIONS(2898), + [anon_sym_u32] = ACTIONS(2898), + [anon_sym_i32] = ACTIONS(2898), + [anon_sym_u64] = ACTIONS(2898), + [anon_sym_i64] = ACTIONS(2898), + [anon_sym_u128] = ACTIONS(2898), + [anon_sym_i128] = ACTIONS(2898), + [anon_sym_isize] = ACTIONS(2898), + [anon_sym_usize] = ACTIONS(2898), + [anon_sym_f32] = ACTIONS(2898), + [anon_sym_f64] = ACTIONS(2898), + [anon_sym_bool] = ACTIONS(2898), + [anon_sym_str] = ACTIONS(2898), + [anon_sym_char] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2896), + [anon_sym_DOT_DOT] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2896), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_async] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_default] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_gen] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_impl] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2898), + [anon_sym_loop] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_mod] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_trait] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2898), + [anon_sym_while] = ACTIONS(2898), + [anon_sym_extern] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2898), + [anon_sym_move] = ACTIONS(2898), + [anon_sym_try] = ACTIONS(2898), + [sym_integer_literal] = ACTIONS(2896), + [aux_sym_string_literal_token1] = ACTIONS(2896), + [sym_char_literal] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2898), + [anon_sym_false] = ACTIONS(2898), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2896), + [sym__raw_string_literal_start] = ACTIONS(2896), + [sym_float_literal] = ACTIONS(2896), + }, + [STATE(743)] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym_macro_rules_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_u8] = ACTIONS(2902), + [anon_sym_i8] = ACTIONS(2902), + [anon_sym_u16] = ACTIONS(2902), + [anon_sym_i16] = ACTIONS(2902), + [anon_sym_u32] = ACTIONS(2902), + [anon_sym_i32] = ACTIONS(2902), + [anon_sym_u64] = ACTIONS(2902), + [anon_sym_i64] = ACTIONS(2902), + [anon_sym_u128] = ACTIONS(2902), + [anon_sym_i128] = ACTIONS(2902), + [anon_sym_isize] = ACTIONS(2902), + [anon_sym_usize] = ACTIONS(2902), + [anon_sym_f32] = ACTIONS(2902), + [anon_sym_f64] = ACTIONS(2902), + [anon_sym_bool] = ACTIONS(2902), + [anon_sym_str] = ACTIONS(2902), + [anon_sym_char] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_DOT_DOT] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_gen] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_impl] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_loop] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_mod] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_trait] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), [anon_sym_extern] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2911), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_move] = ACTIONS(2902), + [anon_sym_try] = ACTIONS(2902), + [sym_integer_literal] = ACTIONS(2900), + [aux_sym_string_literal_token1] = ACTIONS(2900), + [sym_char_literal] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2902), + [anon_sym_false] = ACTIONS(2902), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2902), + [sym_super] = ACTIONS(2902), + [sym_crate] = ACTIONS(2902), + [sym_metavariable] = ACTIONS(2900), + [sym__raw_string_literal_start] = ACTIONS(2900), + [sym_float_literal] = ACTIONS(2900), + }, + [STATE(744)] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_macro_rules_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_u8] = ACTIONS(2906), + [anon_sym_i8] = ACTIONS(2906), + [anon_sym_u16] = ACTIONS(2906), + [anon_sym_i16] = ACTIONS(2906), + [anon_sym_u32] = ACTIONS(2906), + [anon_sym_i32] = ACTIONS(2906), + [anon_sym_u64] = ACTIONS(2906), + [anon_sym_i64] = ACTIONS(2906), + [anon_sym_u128] = ACTIONS(2906), + [anon_sym_i128] = ACTIONS(2906), + [anon_sym_isize] = ACTIONS(2906), + [anon_sym_usize] = ACTIONS(2906), + [anon_sym_f32] = ACTIONS(2906), + [anon_sym_f64] = ACTIONS(2906), + [anon_sym_bool] = ACTIONS(2906), + [anon_sym_str] = ACTIONS(2906), + [anon_sym_char] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_POUND] = ACTIONS(2904), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_gen] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_impl] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_mod] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_trait] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_move] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [sym_integer_literal] = ACTIONS(2904), + [aux_sym_string_literal_token1] = ACTIONS(2904), + [sym_char_literal] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2906), + [sym_super] = ACTIONS(2906), + [sym_crate] = ACTIONS(2906), + [sym_metavariable] = ACTIONS(2904), + [sym__raw_string_literal_start] = ACTIONS(2904), + [sym_float_literal] = ACTIONS(2904), + }, + [STATE(745)] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2908), + [anon_sym_macro_rules_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_u8] = ACTIONS(2910), + [anon_sym_i8] = ACTIONS(2910), + [anon_sym_u16] = ACTIONS(2910), + [anon_sym_i16] = ACTIONS(2910), + [anon_sym_u32] = ACTIONS(2910), + [anon_sym_i32] = ACTIONS(2910), + [anon_sym_u64] = ACTIONS(2910), + [anon_sym_i64] = ACTIONS(2910), + [anon_sym_u128] = ACTIONS(2910), + [anon_sym_i128] = ACTIONS(2910), + [anon_sym_isize] = ACTIONS(2910), + [anon_sym_usize] = ACTIONS(2910), + [anon_sym_f32] = ACTIONS(2910), + [anon_sym_f64] = ACTIONS(2910), + [anon_sym_bool] = ACTIONS(2910), + [anon_sym_str] = ACTIONS(2910), + [anon_sym_char] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_PIPE] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_DOT] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_async] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_gen] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_loop] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_mod] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_trait] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_extern] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_move] = ACTIONS(2910), + [anon_sym_try] = ACTIONS(2910), + [sym_integer_literal] = ACTIONS(2908), + [aux_sym_string_literal_token1] = ACTIONS(2908), + [sym_char_literal] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2910), + [anon_sym_false] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2910), + [sym_super] = ACTIONS(2910), + [sym_crate] = ACTIONS(2910), + [sym_metavariable] = ACTIONS(2908), + [sym__raw_string_literal_start] = ACTIONS(2908), + [sym_float_literal] = ACTIONS(2908), + }, + [STATE(746)] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_macro_rules_BANG] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_u8] = ACTIONS(2914), + [anon_sym_i8] = ACTIONS(2914), + [anon_sym_u16] = ACTIONS(2914), + [anon_sym_i16] = ACTIONS(2914), + [anon_sym_u32] = ACTIONS(2914), + [anon_sym_i32] = ACTIONS(2914), + [anon_sym_u64] = ACTIONS(2914), + [anon_sym_i64] = ACTIONS(2914), + [anon_sym_u128] = ACTIONS(2914), + [anon_sym_i128] = ACTIONS(2914), + [anon_sym_isize] = ACTIONS(2914), + [anon_sym_usize] = ACTIONS(2914), + [anon_sym_f32] = ACTIONS(2914), + [anon_sym_f64] = ACTIONS(2914), + [anon_sym_bool] = ACTIONS(2914), + [anon_sym_str] = ACTIONS(2914), + [anon_sym_char] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2912), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_default] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_gen] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_impl] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2914), + [anon_sym_loop] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2914), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_trait] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2914), + [anon_sym_while] = ACTIONS(2914), + [anon_sym_extern] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2914), + [anon_sym_move] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2914), + [sym_integer_literal] = ACTIONS(2912), + [aux_sym_string_literal_token1] = ACTIONS(2912), + [sym_char_literal] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2914), + [anon_sym_false] = ACTIONS(2914), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2914), + [sym_super] = ACTIONS(2914), + [sym_crate] = ACTIONS(2914), + [sym_metavariable] = ACTIONS(2912), + [sym__raw_string_literal_start] = ACTIONS(2912), + [sym_float_literal] = ACTIONS(2912), + }, + [STATE(747)] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_macro_rules_BANG] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_u8] = ACTIONS(2918), + [anon_sym_i8] = ACTIONS(2918), + [anon_sym_u16] = ACTIONS(2918), + [anon_sym_i16] = ACTIONS(2918), + [anon_sym_u32] = ACTIONS(2918), + [anon_sym_i32] = ACTIONS(2918), + [anon_sym_u64] = ACTIONS(2918), + [anon_sym_i64] = ACTIONS(2918), + [anon_sym_u128] = ACTIONS(2918), + [anon_sym_i128] = ACTIONS(2918), + [anon_sym_isize] = ACTIONS(2918), + [anon_sym_usize] = ACTIONS(2918), + [anon_sym_f32] = ACTIONS(2918), + [anon_sym_f64] = ACTIONS(2918), + [anon_sym_bool] = ACTIONS(2918), + [anon_sym_str] = ACTIONS(2918), + [anon_sym_char] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_PIPE] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(2916), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_async] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_default] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_gen] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_impl] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2918), + [anon_sym_loop] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2918), + [anon_sym_move] = ACTIONS(2918), + [anon_sym_try] = ACTIONS(2918), + [sym_integer_literal] = ACTIONS(2916), + [aux_sym_string_literal_token1] = ACTIONS(2916), + [sym_char_literal] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2918), + [anon_sym_false] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2918), + [sym_super] = ACTIONS(2918), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(2916), + [sym__raw_string_literal_start] = ACTIONS(2916), + [sym_float_literal] = ACTIONS(2916), }, [STATE(748)] = { + [sym_empty_statement] = STATE(1305), + [sym_macro_definition] = STATE(1305), + [sym_attribute_item] = STATE(1305), + [sym_inner_attribute_item] = STATE(1305), + [sym_mod_item] = STATE(1305), + [sym_foreign_mod_item] = STATE(1305), + [sym_struct_item] = STATE(1305), + [sym_union_item] = STATE(1305), + [sym_enum_item] = STATE(1305), + [sym_extern_crate_declaration] = STATE(1305), + [sym_const_item] = STATE(1305), + [sym_static_item] = STATE(1305), + [sym_type_item] = STATE(1305), + [sym_function_item] = STATE(1305), + [sym_function_signature_item] = STATE(1305), + [sym_function_modifiers] = STATE(3747), + [sym_impl_item] = STATE(1305), + [sym_trait_item] = STATE(1305), + [sym_associated_type] = STATE(1305), + [sym_let_declaration] = STATE(1305), + [sym_use_declaration] = STATE(1305), + [sym_extern_modifier] = STATE(2250), + [sym_visibility_modifier] = STATE(2009), + [sym_bracketed_type] = STATE(3696), + [sym_generic_type_with_turbofish] = STATE(3770), + [sym_macro_invocation] = STATE(1305), + [sym_scoped_identifier] = STATE(3191), [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_macro_rules_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_u8] = ACTIONS(2916), - [anon_sym_i8] = ACTIONS(2916), - [anon_sym_u16] = ACTIONS(2916), - [anon_sym_i16] = ACTIONS(2916), - [anon_sym_u32] = ACTIONS(2916), - [anon_sym_i32] = ACTIONS(2916), - [anon_sym_u64] = ACTIONS(2916), - [anon_sym_i64] = ACTIONS(2916), - [anon_sym_u128] = ACTIONS(2916), - [anon_sym_i128] = ACTIONS(2916), - [anon_sym_isize] = ACTIONS(2916), - [anon_sym_usize] = ACTIONS(2916), - [anon_sym_f32] = ACTIONS(2916), - [anon_sym_f64] = ACTIONS(2916), - [anon_sym_bool] = ACTIONS(2916), - [anon_sym_str] = ACTIONS(2916), - [anon_sym_char] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_async] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_gen] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_impl] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_loop] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_mod] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_trait] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_move] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [sym_integer_literal] = ACTIONS(2914), - [aux_sym_string_literal_token1] = ACTIONS(2914), - [sym_char_literal] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2916), - [anon_sym_false] = ACTIONS(2916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2916), - [sym_super] = ACTIONS(2916), - [sym_crate] = ACTIONS(2916), - [sym_metavariable] = ACTIONS(2914), - [sym__raw_string_literal_start] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), + [aux_sym_declaration_list_repeat1] = STATE(639), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_u8] = ACTIONS(2536), + [anon_sym_i8] = ACTIONS(2536), + [anon_sym_u16] = ACTIONS(2536), + [anon_sym_i16] = ACTIONS(2536), + [anon_sym_u32] = ACTIONS(2536), + [anon_sym_i32] = ACTIONS(2536), + [anon_sym_u64] = ACTIONS(2536), + [anon_sym_i64] = ACTIONS(2536), + [anon_sym_u128] = ACTIONS(2536), + [anon_sym_i128] = ACTIONS(2536), + [anon_sym_isize] = ACTIONS(2536), + [anon_sym_usize] = ACTIONS(2536), + [anon_sym_f32] = ACTIONS(2536), + [anon_sym_f64] = ACTIONS(2536), + [anon_sym_bool] = ACTIONS(2536), + [anon_sym_str] = ACTIONS(2536), + [anon_sym_char] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2546), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2550), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2566), + [anon_sym_unsafe] = ACTIONS(2568), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2578), }, [STATE(749)] = { + [sym_attribute_item] = STATE(1140), + [sym_inner_attribute_item] = STATE(1140), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_match_pattern] = STATE(3758), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2962), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_macro_rules_BANG] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_u8] = ACTIONS(2920), - [anon_sym_i8] = ACTIONS(2920), - [anon_sym_u16] = ACTIONS(2920), - [anon_sym_i16] = ACTIONS(2920), - [anon_sym_u32] = ACTIONS(2920), - [anon_sym_i32] = ACTIONS(2920), - [anon_sym_u64] = ACTIONS(2920), - [anon_sym_i64] = ACTIONS(2920), - [anon_sym_u128] = ACTIONS(2920), - [anon_sym_i128] = ACTIONS(2920), - [anon_sym_isize] = ACTIONS(2920), - [anon_sym_usize] = ACTIONS(2920), - [anon_sym_f32] = ACTIONS(2920), - [anon_sym_f64] = ACTIONS(2920), - [anon_sym_bool] = ACTIONS(2920), - [anon_sym_str] = ACTIONS(2920), - [anon_sym_char] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_COLON_COLON] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_async] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_default] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_gen] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_impl] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2920), - [anon_sym_loop] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_mod] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2920), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2920), - [anon_sym_move] = ACTIONS(2920), - [anon_sym_try] = ACTIONS(2920), - [sym_integer_literal] = ACTIONS(2918), - [aux_sym_string_literal_token1] = ACTIONS(2918), - [sym_char_literal] = ACTIONS(2918), - [anon_sym_true] = ACTIONS(2920), - [anon_sym_false] = ACTIONS(2920), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2920), - [sym_super] = ACTIONS(2920), - [sym_crate] = ACTIONS(2920), - [sym_metavariable] = ACTIONS(2918), - [sym__raw_string_literal_start] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), + [aux_sym_match_arm_repeat1] = STATE(1073), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(750)] = { [sym_line_comment] = STATE(750), @@ -94728,41 +94733,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(3046), }, [STATE(782)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_const_parameter] = STATE(3009), + [sym_type_parameter] = STATE(3009), + [sym_lifetime_parameter] = STATE(3009), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2939), + [sym_bracketed_type] = STATE(3722), + [sym_qualified_type] = STATE(3575), + [sym_lifetime] = STATE(2542), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(794), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_enum_variant_list_repeat1] = STATE(2132), + [aux_sym_function_modifiers_repeat1] = STATE(2291), [sym_identifier] = ACTIONS(3050), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3052), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -94780,71 +94787,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3056), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(3056), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(3058), }, [STATE(783)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_const_parameter] = STATE(3034), - [sym_type_parameter] = STATE(3034), - [sym_lifetime_parameter] = STATE(3034), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(2505), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(885), + [sym__type] = STATE(2781), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(2117), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3066), + [aux_sym_enum_variant_list_repeat1] = STATE(791), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3062), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -94862,59 +94865,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3066), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_POUND] = ACTIONS(3052), [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(3072), + [sym_crate] = ACTIONS(3072), + [sym_metavariable] = ACTIONS(1633), }, [STATE(784)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3391), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), [sym_identifier] = ACTIONS(1788), @@ -94937,72 +94942,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(785)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3074), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95020,68 +95025,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(786)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3076), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95099,68 +95104,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(787)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3078), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95178,68 +95183,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3080), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95257,68 +95262,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3082), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95336,68 +95341,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3084), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95415,67 +95420,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(2839), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_enum_variant_list_repeat1] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95493,60 +95498,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, [STATE(792)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2697), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(989), + [sym__type] = STATE(3042), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), + [aux_sym_enum_variant_list_repeat1] = STATE(798), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3072), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(793)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2627), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_RPAREN] = ACTIONS(3086), @@ -95568,63 +95651,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(793)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(793), - [sym_block_comment] = STATE(793), + [STATE(794)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_RPAREN] = ACTIONS(3090), @@ -95646,145 +95729,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COMMA] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(794)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1025), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(794), - [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(795)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2695), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(3094), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -95802,66 +95807,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2642), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2830), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_RPAREN] = ACTIONS(3098), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -95880,70 +95885,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(797)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1036), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2747), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(1547), + [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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), + }, + [STATE(798)] = { + [sym_attribute_item] = STATE(1120), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym_visibility_modifier] = STATE(889), + [sym__type] = STATE(2851), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [aux_sym_enum_variant_list_repeat1] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95961,142 +96044,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_pub] = ACTIONS(3070), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3072), [sym_metavariable] = ACTIONS(1633), }, - [STATE(798)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2648), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2829), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3102), [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3102), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -96114,61 +96119,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1231), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), [sym_identifier] = ACTIONS(1788), @@ -96192,60 +96197,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), [sym_identifier] = ACTIONS(1788), @@ -96269,60 +96274,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(802)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), [sym_identifier] = ACTIONS(1788), @@ -96346,66 +96351,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3112), [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3112), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -96423,64 +96428,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2798), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3114), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -96499,66 +96505,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3116), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3116), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -96577,66 +96582,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3118), [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3120), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -96654,66 +96659,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3120), [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3122), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -96731,65 +96736,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(808)] = { - [sym_parameter] = STATE(3181), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2928), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3122), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -96808,65 +96813,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_parameter] = STATE(2981), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2518), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3128), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -96885,61 +96890,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(3126), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(810)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2647), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_parameter] = STATE(3275), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3064), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), [sym_identifier] = ACTIONS(1788), @@ -96962,65 +96967,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(3126), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_RPAREN] = ACTIONS(3130), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -97039,66 +97044,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(812)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2504), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3132), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -97116,65 +97121,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2795), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3134), [anon_sym_LBRACK] = ACTIONS(1794), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), @@ -97193,66 +97197,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3134), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3136), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_parameter] = STATE(2981), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2792), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3136), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -97270,66 +97275,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(3126), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3138), [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3138), [anon_sym_u8] = ACTIONS(1796), [anon_sym_i8] = ACTIONS(1796), [anon_sym_u16] = ACTIONS(1796), @@ -97347,60 +97352,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2512), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3442), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), [sym_identifier] = ACTIONS(1788), @@ -97423,62 +97428,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2559), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2971), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(3140), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), + }, + [STATE(818)] = { + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(3000), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), + }, + [STATE(819)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2202), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), @@ -97499,364 +97656,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(818)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(818), - [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3142), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(819)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3182), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(819), - [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2171), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2974), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2838), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(3107), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), [sym_identifier] = ACTIONS(1788), @@ -97879,60 +97884,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3260), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2210), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), [sym_identifier] = ACTIONS(1788), @@ -97955,60 +97960,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3324), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), [sym_identifier] = ACTIONS(1788), @@ -98031,60 +98036,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2167), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2169), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), [sym_identifier] = ACTIONS(1788), @@ -98107,60 +98112,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3319), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2817), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), [sym_identifier] = ACTIONS(1788), @@ -98183,60 +98188,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3142), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2868), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), [sym_identifier] = ACTIONS(1788), @@ -98259,136 +98264,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3138), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(2992), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3108), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(3106), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), [sym_identifier] = ACTIONS(1657), @@ -98440,31 +98445,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1691), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2972), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2550), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), [sym_identifier] = ACTIONS(1788), @@ -98487,60 +98492,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3327), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), [sym_identifier] = ACTIONS(1788), @@ -98563,62 +98568,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2923), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3660), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3393), + [sym_macro_invocation] = STATE(2944), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(2959), + [sym_const_block] = STATE(2944), + [sym__pattern] = STATE(3040), + [sym_generic_pattern] = STATE(2944), + [sym_tuple_pattern] = STATE(2944), + [sym_slice_pattern] = STATE(2944), + [sym_tuple_struct_pattern] = STATE(2944), + [sym_struct_pattern] = STATE(2944), + [sym_remaining_field_pattern] = STATE(2944), + [sym_mut_pattern] = STATE(2944), + [sym_range_pattern] = STATE(2944), + [sym_ref_pattern] = STATE(2944), + [sym_captured_pattern] = STATE(2944), + [sym_reference_pattern] = STATE(2944), + [sym_or_pattern] = STATE(2944), + [sym__literal_pattern] = STATE(2393), + [sym_negative_literal] = STATE(2385), + [sym_string_literal] = STATE(2385), + [sym_raw_string_literal] = STATE(2385), + [sym_boolean_literal] = STATE(2385), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), + }, + [STATE(833)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3087), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), @@ -98639,62 +98720,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(833)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3444), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(833), - [sym_block_comment] = STATE(833), + [STATE(834)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), @@ -98715,62 +98796,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, - [STATE(834)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2509), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(834), - [sym_block_comment] = STATE(834), + [STATE(835)] = { + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2906), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), [anon_sym_LBRACK] = ACTIONS(1794), @@ -98791,136 +98872,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3146), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(835)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2944), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(835), - [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(3148), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3317), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2180), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), [sym_identifier] = ACTIONS(1788), @@ -98943,60 +98948,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2517), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2185), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), [sym_identifier] = ACTIONS(1788), @@ -99019,440 +99024,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(3144), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2955), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2539), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2946), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3177), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2990), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2503), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3089), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3238), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3094), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2578), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = 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_DASH] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(3148), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3413), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3418), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), [sym_identifier] = ACTIONS(1788), @@ -99475,60 +99480,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3436), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3434), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), [sym_identifier] = ACTIONS(1788), @@ -99551,60 +99556,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3441), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3439), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), [sym_identifier] = ACTIONS(1788), @@ -99627,60 +99632,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3442), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3158), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), [sym_identifier] = ACTIONS(1788), @@ -99703,60 +99708,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3443), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), [sym_identifier] = ACTIONS(1788), @@ -99779,60 +99784,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3475), + [sym_generic_type] = STATE(3483), + [sym_generic_type_with_turbofish] = STATE(3332), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2017), + [sym_scoped_type_identifier] = STATE(3028), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2170), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2093), + [sym_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), [sym_identifier] = ACTIONS(1788), @@ -99855,142 +99860,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1796), [anon_sym_str] = ACTIONS(1796), [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_gen] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_ref] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1810), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1273), }, [STATE(849)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3180), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(850)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(850), - [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100008,137 +99938,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(3152), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), + [sym_self] = ACTIONS(3154), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(851)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3222), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(852)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(850)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3158), [anon_sym_STAR] = ACTIONS(1605), [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), @@ -100158,24 +100013,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3228), + [sym_mutable_specifier] = ACTIONS(3160), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100183,39 +100038,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(853)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(851)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3330), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100233,64 +100088,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3162), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3234), + [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, + [STATE(852)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1822), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [sym_mutable_specifier] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(853)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1471), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [sym_mutable_specifier] = ACTIONS(3230), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100308,23 +100313,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [sym_mutable_specifier] = ACTIONS(3236), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -100334,38 +100339,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2439), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2251), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3238), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100383,23 +100388,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100408,38 +100413,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_higher_ranked_trait_bound] = STATE(2221), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2222), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2222), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100457,23 +100462,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(3240), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100482,38 +100487,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(1042), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2262), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3246), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3242), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100531,23 +100536,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100556,37 +100561,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100604,24 +100610,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100630,38 +100635,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100679,23 +100684,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100704,38 +100709,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3248), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100753,23 +100758,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100778,38 +100783,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2287), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100827,23 +100831,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100852,38 +100857,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(975), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2453), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2450), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2254), + [sym_function_modifiers] = STATE(3776), + [sym_higher_ranked_trait_bound] = STATE(2285), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2286), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2286), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3256), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100901,23 +100906,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(3240), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100926,37 +100931,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(852), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100974,24 +100980,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101000,112 +101005,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3776), + [sym_higher_ranked_trait_bound] = STATE(2285), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2287), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2287), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(2061), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(865)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3264), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101123,23 +101054,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(3240), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101147,39 +101078,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(866)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(941), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2236), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3266), + [STATE(865)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2655), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101197,23 +101127,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101221,39 +101152,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(867)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(866)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_type_parameters] = STATE(987), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2469), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2252), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3256), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3270), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101271,23 +101202,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3260), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101295,38 +101226,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(868)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(867)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2724), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101344,24 +101276,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101369,39 +101300,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(869)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(868)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_RPAREN] = ACTIONS(3262), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101419,23 +101350,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101443,39 +101374,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(870)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(869)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_type_parameters] = STATE(999), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2398), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2474), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2258), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3264), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101493,23 +101424,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3260), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101517,39 +101448,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(871)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2240), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2242), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2242), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(870)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_type_parameters] = STATE(917), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2459), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2465), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2217), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3268), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101567,23 +101498,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3260), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101591,39 +101522,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(872)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(871)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3276), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101641,23 +101571,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101665,39 +101596,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(873)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(872)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3241), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(851), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3278), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101715,23 +101645,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3274), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101739,39 +101670,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, + [STATE(873)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1801), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(852), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [sym_mutable_specifier] = ACTIONS(3276), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2276), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2276), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101789,23 +101794,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101814,37 +101819,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2035), + [sym_bracketed_type] = STATE(3722), [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101862,24 +101867,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [sym_mutable_specifier] = ACTIONS(3278), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101888,108 +101893,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [sym_mutable_specifier] = ACTIONS(3280), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2939), + [sym_bracketed_type] = STATE(3722), + [sym_qualified_type] = STATE(3575), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -102011,22 +102016,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -102036,37 +102041,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3345), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_type_parameters] = STATE(974), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2409), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2450), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2232), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3282), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102084,24 +102090,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3260), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3284), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102110,38 +102115,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_RPAREN] = ACTIONS(3286), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102159,23 +102164,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102184,111 +102189,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2724), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(881)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3288), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102306,23 +102238,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(881)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102331,37 +102336,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2062), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3750), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2062), + [sym_tuple_type] = STATE(2062), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2062), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2003), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3290), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102379,23 +102384,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(3292), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102404,110 +102409,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1194), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1459), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1087), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3093), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2566), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102525,23 +102530,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102550,37 +102555,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2839), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102598,23 +102603,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102623,37 +102628,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2421), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102671,23 +102676,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102696,37 +102701,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2553), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102744,23 +102749,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102769,110 +102774,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(1426), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(1426), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2588), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2898), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102890,23 +102895,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102915,37 +102920,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2841), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2591), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102963,23 +102968,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102988,110 +102993,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1465), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1502), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3303), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103109,23 +103114,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103134,33 +103139,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2652), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(894)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -103182,22 +103260,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -103206,37 +103284,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(894)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(895)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2062), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3603), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2062), + [sym_tuple_type] = STATE(2062), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2062), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2237), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3294), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1219), [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), @@ -103255,23 +103333,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(3296), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103279,38 +103357,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(895)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(896)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3044), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103328,23 +103406,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103352,38 +103430,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(896)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2269), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(897)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1504), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(898)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1821), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(899)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1822), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(900)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1760), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(1760), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(1760), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(901)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1438), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(902)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2840), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103401,23 +103844,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103425,38 +103868,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(897)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(903)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2655), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103474,23 +103917,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103498,184 +103941,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(898)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [STATE(904)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1827), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), }, - [STATE(899)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [STATE(905)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), }, - [STATE(900)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2472), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(906)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(907)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1772), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(908)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(909)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103693,23 +104355,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103717,38 +104379,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(901)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(910)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1782), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(911)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1783), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(912)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(913)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103766,23 +104647,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103790,38 +104671,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(902)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(914)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2061), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(2061), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103839,23 +104720,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103863,38 +104744,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(903)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(915)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3420), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103912,23 +104793,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103936,38 +104817,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(904)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(916)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1789), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(917)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2456), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2457), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2264), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3302), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103985,23 +104939,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104009,38 +104963,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(905)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(918)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104058,23 +105012,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104082,180 +105036,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(906)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1714), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(907)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1717), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1717), - [sym_tuple_type] = STATE(1717), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1666), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1717), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1600), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), - }, - [STATE(908)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(919)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2048), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -104277,22 +105085,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -104301,38 +105109,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(909)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2409), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), + [STATE(920)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2050), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3603), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2050), + [sym_tuple_type] = STATE(2050), + [sym_unit_type] = STATE(2042), [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2050), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2253), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3306), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104350,23 +105158,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104374,38 +105182,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(910)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2282), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(921)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2683), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104423,23 +105231,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104447,34 +105255,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(911)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(922)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -104496,22 +105304,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -104520,38 +105328,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(912)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(923)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2038), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104569,23 +105377,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104593,34 +105401,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(913)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(924)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -104642,22 +105450,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -104666,107 +105474,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(914)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1753), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1753), - [sym_tuple_type] = STATE(1753), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1660), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1753), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1597), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), - }, - [STATE(915)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2695), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(925)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -104788,22 +105523,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1227), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -104812,38 +105547,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(916)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2281), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(926)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104861,23 +105596,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104885,38 +105620,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(917)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(927)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104934,23 +105669,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104958,38 +105693,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(918)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(928)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105007,23 +105742,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105031,111 +105766,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(919)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(920)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(929)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2271), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105153,23 +105815,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105177,38 +105839,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(921)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(930)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105226,23 +105888,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105250,257 +105912,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(922)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(923)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(924)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1475), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(925)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(931)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2775), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105518,23 +105961,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105542,111 +105985,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(926)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1745), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(1745), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(1745), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(927)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(932)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2988), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105664,23 +106034,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105688,38 +106058,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(928)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(933)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2449), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105737,23 +106107,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105761,38 +106131,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(929)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(934)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2452), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105810,23 +106180,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105834,111 +106204,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(930)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1481), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1481), - [sym_tuple_type] = STATE(1481), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1481), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1086), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), - }, - [STATE(931)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(935)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2758), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105956,23 +106253,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105980,38 +106277,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(932)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(936)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1456), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(937)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3579), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(1223), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3396), + [sym_scoped_type_identifier] = STATE(1084), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3312), + [anon_sym_i8] = ACTIONS(3312), + [anon_sym_u16] = ACTIONS(3312), + [anon_sym_i16] = ACTIONS(3312), + [anon_sym_u32] = ACTIONS(3312), + [anon_sym_i32] = ACTIONS(3312), + [anon_sym_u64] = ACTIONS(3312), + [anon_sym_i64] = ACTIONS(3312), + [anon_sym_u128] = ACTIONS(3312), + [anon_sym_i128] = ACTIONS(3312), + [anon_sym_isize] = ACTIONS(3312), + [anon_sym_usize] = ACTIONS(3312), + [anon_sym_f32] = ACTIONS(3312), + [anon_sym_f64] = ACTIONS(3312), + [anon_sym_bool] = ACTIONS(3312), + [anon_sym_str] = ACTIONS(3312), + [anon_sym_char] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_gen] = ACTIONS(3318), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3320), + }, + [STATE(938)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1728), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(939)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106029,23 +106545,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106053,38 +106569,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(933)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(940)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3330), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106102,23 +106618,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106126,38 +106642,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(934)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(941)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2724), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106175,23 +106691,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106199,403 +106715,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(935)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(936)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1751), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(937)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(938)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(939)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(940)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3118), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(942)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(2061), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(2061), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106613,23 +106764,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106637,38 +106788,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(941)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2388), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2226), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3330), + [STATE(943)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3049), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106686,23 +106837,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106710,184 +106861,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(942)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(943)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2801), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106905,23 +106910,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106930,110 +106935,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(946)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107051,23 +106983,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107075,38 +107007,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(947)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(946)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3047), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107124,23 +107056,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107148,38 +107080,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(948)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(947)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107197,23 +107129,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107221,111 +107153,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(949)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1775), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(950)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2961), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(948)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2441), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107343,23 +107202,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107367,38 +107226,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(951)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(949)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3368), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107416,62 +107275,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3334), + [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(952)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(950)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1481), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3579), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1481), + [sym_tuple_type] = STATE(1481), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(1312), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1481), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3396), + [sym_scoped_type_identifier] = STATE(1089), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3312), + [anon_sym_i8] = ACTIONS(3312), + [anon_sym_u16] = ACTIONS(3312), + [anon_sym_i16] = ACTIONS(3312), + [anon_sym_u32] = ACTIONS(3312), + [anon_sym_i32] = ACTIONS(3312), + [anon_sym_u64] = ACTIONS(3312), + [anon_sym_i64] = ACTIONS(3312), + [anon_sym_u128] = ACTIONS(3312), + [anon_sym_i128] = ACTIONS(3312), + [anon_sym_isize] = ACTIONS(3312), + [anon_sym_usize] = ACTIONS(3312), + [anon_sym_f32] = ACTIONS(3312), + [anon_sym_f64] = ACTIONS(3312), + [anon_sym_bool] = ACTIONS(3312), + [anon_sym_str] = ACTIONS(3312), + [anon_sym_char] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3318), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3320), + }, + [STATE(951)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3274), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107489,23 +107421,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107513,184 +107445,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(953)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(953), - [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(954)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1458), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(954), - [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(955)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2824), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(952)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2820), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107708,23 +107494,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107732,111 +107518,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(956)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [STATE(953)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1470), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, - [STATE(957)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3043), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(954)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107854,23 +107640,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107878,111 +107664,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(958)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(959)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2447), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2253), - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3336), + [STATE(955)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108000,23 +107713,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108024,38 +107737,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(960)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(956)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2466), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108073,23 +107786,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108097,38 +107810,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(961)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(957)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1471), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(958)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2800), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108146,23 +107932,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108170,38 +107956,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(962)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(959)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2468), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108219,23 +108005,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108243,38 +108029,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(963)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(960)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2990), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108292,23 +108078,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108316,38 +108102,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(964)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(961)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2377), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108365,23 +108151,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108389,38 +108175,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(965)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(962)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1473), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(1473), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(1473), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(963)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2442), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108438,23 +108297,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108462,38 +108321,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(966)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(964)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2950), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108511,23 +108370,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108535,38 +108394,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(967)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2865), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(965)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108584,23 +108443,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108608,38 +108467,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(968)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(966)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2629), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108657,23 +108516,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108681,38 +108540,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, + [STATE(967)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1722), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1733), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(1722), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1722), + [sym_tuple_type] = STATE(1722), + [sym_unit_type] = STATE(1722), + [sym_generic_type] = STATE(1697), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1722), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(1722), + [sym_pointer_type] = STATE(1722), + [sym_never_type] = STATE(1722), + [sym_abstract_type] = STATE(1722), + [sym_dynamic_type] = STATE(1722), + [sym_macro_invocation] = STATE(1722), + [sym_scoped_identifier] = STATE(3405), + [sym_scoped_type_identifier] = STATE(1604), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3198), + }, + [STATE(968)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1737), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3502), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1737), + [sym_tuple_type] = STATE(1737), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(1643), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1737), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1592), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3332), + [anon_sym_i8] = ACTIONS(3332), + [anon_sym_u16] = ACTIONS(3332), + [anon_sym_i16] = ACTIONS(3332), + [anon_sym_u32] = ACTIONS(3332), + [anon_sym_i32] = ACTIONS(3332), + [anon_sym_u64] = ACTIONS(3332), + [anon_sym_i64] = ACTIONS(3332), + [anon_sym_u128] = ACTIONS(3332), + [anon_sym_i128] = ACTIONS(3332), + [anon_sym_isize] = ACTIONS(3332), + [anon_sym_usize] = ACTIONS(3332), + [anon_sym_f32] = ACTIONS(3332), + [anon_sym_f64] = ACTIONS(3332), + [anon_sym_bool] = ACTIONS(3332), + [anon_sym_str] = ACTIONS(3332), + [anon_sym_char] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_gen] = ACTIONS(3338), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3340), + }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108730,23 +108735,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108755,37 +108760,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2653), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2586), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108803,23 +108808,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108828,37 +108833,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1512), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(972)] = { + [sym_function_modifiers] = STATE(3606), + [sym_removed_trait_bound] = STATE(1767), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3502), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3502), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1767), + [sym_tuple_type] = STATE(1767), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(1691), + [sym_generic_type_with_turbofish] = STATE(3657), + [sym_bounded_type] = STATE(1767), + [sym_use_bounds] = STATE(3502), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1598), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3332), + [anon_sym_i8] = ACTIONS(3332), + [anon_sym_u16] = ACTIONS(3332), + [anon_sym_i16] = ACTIONS(3332), + [anon_sym_u32] = ACTIONS(3332), + [anon_sym_i32] = ACTIONS(3332), + [anon_sym_u64] = ACTIONS(3332), + [anon_sym_i64] = ACTIONS(3332), + [anon_sym_u128] = ACTIONS(3332), + [anon_sym_i128] = ACTIONS(3332), + [anon_sym_isize] = ACTIONS(3332), + [anon_sym_usize] = ACTIONS(3332), + [anon_sym_f32] = ACTIONS(3332), + [anon_sym_f64] = ACTIONS(3332), + [anon_sym_bool] = ACTIONS(3332), + [anon_sym_str] = ACTIONS(3332), + [anon_sym_char] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3338), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3340), + }, + [STATE(973)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2807), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108876,23 +109027,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108900,38 +109051,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(972)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(974)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2471), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2257), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3344), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108949,23 +109100,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108973,38 +109124,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(973)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(975)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109022,23 +109173,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109046,38 +109197,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(974)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2656), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(976)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2893), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109095,23 +109246,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109119,38 +109270,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(975)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2422), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2456), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2256), - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3340), + [STATE(977)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109168,62 +109319,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), + [sym_self] = ACTIONS(3348), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(976)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3119), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(978)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109241,23 +109392,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109265,38 +109416,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(977)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(979)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1479), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(980)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109314,23 +109538,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109338,38 +109562,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(978)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(981)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1480), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(982)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1529), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(983)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1484), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(984)] = { + [sym_function_modifiers] = STATE(3748), + [sym_removed_trait_bound] = STATE(1447), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(1485), + [sym_bracketed_type] = STATE(3649), + [sym_lifetime] = STATE(3579), + [sym_array_type] = STATE(1447), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1447), + [sym_tuple_type] = STATE(1447), + [sym_unit_type] = STATE(1447), + [sym_generic_type] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(3637), + [sym_bounded_type] = STATE(1447), + [sym_use_bounds] = STATE(3579), + [sym_reference_type] = STATE(1447), + [sym_pointer_type] = STATE(1447), + [sym_never_type] = STATE(1447), + [sym_abstract_type] = STATE(1447), + [sym_dynamic_type] = STATE(1447), + [sym_macro_invocation] = STATE(1447), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1093), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), + }, + [STATE(985)] = { + [sym_function_modifiers] = STATE(3650), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2049), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3603), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1615), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3603), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2220), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109387,23 +109903,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109411,38 +109927,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(979)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(986)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109460,23 +109976,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109484,38 +110000,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(980)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(987)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2394), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2472), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2256), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3350), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109533,23 +110049,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109557,111 +110073,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(981)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(981), - [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(982)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(988)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109679,23 +110122,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109703,38 +110146,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(983)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2009), - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3344), + [STATE(989)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2851), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109752,23 +110195,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109776,38 +110219,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(984)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(990)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109825,23 +110268,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109849,38 +110292,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(985)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(991)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109898,23 +110341,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109922,38 +110365,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(986)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(992)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3144), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109971,23 +110414,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109995,38 +110438,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(987)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2284), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(993)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2403), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110044,23 +110487,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110068,38 +110511,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(988)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(994)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2404), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110117,23 +110560,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110141,38 +110584,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(989)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(995)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2589), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110190,23 +110633,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110214,38 +110657,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(990)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(996)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2918), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110263,23 +110706,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110287,38 +110730,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(991)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(997)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2573), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110336,23 +110779,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110360,38 +110803,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(992)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(998)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(992), - [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110409,23 +110852,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110433,38 +110876,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(993)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(993), - [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(999)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2405), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2475), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2261), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3354), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110482,23 +110925,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110506,38 +110949,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(994)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1000)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(994), - [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110555,23 +110998,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110579,38 +111022,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(995)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2918), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1001)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(995), - [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110628,23 +111071,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110652,38 +111095,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(996)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2529), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1002)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2048), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(996), - [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110701,23 +111144,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110725,38 +111168,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(997)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), + [STATE(1003)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2050), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3750), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2050), + [sym_tuple_type] = STATE(2050), + [sym_unit_type] = STATE(2042), [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2050), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2004), + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3358), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110774,23 +111217,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110798,38 +111241,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(998)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1004)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110847,23 +111290,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110871,38 +111314,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(999)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2925), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1005)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110920,23 +111363,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110944,38 +111387,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1000)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2675), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1006)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110993,23 +111436,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111017,38 +111460,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1001)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1007)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2282), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111066,23 +111509,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111090,38 +111533,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1002)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1008)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2410), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111139,23 +111582,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111163,38 +111606,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1003)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1009)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2411), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111212,23 +111655,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111236,38 +111679,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1004)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1010)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2412), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111285,23 +111728,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111309,38 +111752,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1005)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1011)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2413), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111358,23 +111801,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111382,38 +111825,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1006)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2461), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1012)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2612), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111431,23 +111874,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111455,38 +111898,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1007)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2466), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1013)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2965), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111504,23 +111947,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111528,38 +111971,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1008)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2229), - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3346), + [STATE(1014)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2525), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111577,23 +112020,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111601,38 +112044,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1009)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1015)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2615), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111650,23 +112093,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111674,38 +112117,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1010)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1016)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2616), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111723,23 +112166,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111747,38 +112190,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1011)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1017)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3015), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111796,169 +112239,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - }, - [STATE(1012)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2471), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - }, - [STATE(1013)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111966,38 +112263,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1014)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1018)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2620), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112015,23 +112312,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112039,38 +112336,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1015)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1019)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2038), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112088,23 +112385,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112112,38 +112409,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1016)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1020)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112161,23 +112458,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112185,38 +112482,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1017)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1021)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112234,23 +112531,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112258,38 +112555,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1018)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2688), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1022)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2444), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1018), - [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112307,23 +112604,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112331,38 +112628,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1019)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1023)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2273), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1019), - [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112380,23 +112677,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112404,38 +112701,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1020)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2973), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1024)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1020), - [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112453,23 +112750,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112477,38 +112774,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1021)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1025)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1021), - [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112526,23 +112823,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112550,38 +112847,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1022)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1026)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1022), - [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1026), + [sym_block_comment] = STATE(1026), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112599,23 +112896,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112623,38 +112920,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1023)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1027)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2861), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1023), - [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1027), + [sym_block_comment] = STATE(1027), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112672,23 +112969,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112696,38 +112993,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1024)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2264), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1028)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1024), - [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1028), + [sym_block_comment] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112745,23 +113042,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112769,38 +113066,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1025)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2596), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1029)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2420), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1025), - [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1029), + [sym_block_comment] = STATE(1029), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112818,23 +113115,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112842,38 +113139,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1026)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2965), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1030)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2421), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1026), - [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112891,23 +113188,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112915,38 +113212,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1027)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2696), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1031)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2422), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1027), - [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112964,23 +113261,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112988,38 +113285,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1028)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2271), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1032)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2423), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1028), - [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113037,23 +113334,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113061,38 +113358,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1029)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), + [STATE(1033)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1029), - [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113110,23 +113407,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113134,38 +113431,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1030)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2285), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1034)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2643), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1030), - [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113183,23 +113480,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113207,111 +113504,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1031)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1506), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1031), - [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(1032)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2887), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1035)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2644), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1032), - [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113329,23 +113553,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113353,38 +113577,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1033)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3074), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1036)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1033), - [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113402,23 +113626,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113426,38 +113650,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1034)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1037)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2425), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1034), - [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113475,23 +113699,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113499,38 +113723,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1035)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3149), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1038)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2426), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1035), - [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113548,23 +113772,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113572,38 +113796,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1036)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1039)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2290), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1036), - [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113621,23 +113845,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113645,38 +113869,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1037)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2606), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1040)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1037), - [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113694,23 +113918,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113718,111 +113942,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1038)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1526), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1038), - [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(1039)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2845), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [STATE(1041)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2654), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1039), - [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113840,23 +113991,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113864,184 +114015,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1040)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1040), - [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(1041)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1444), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1041), - [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, [STATE(1042)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2395), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2232), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2292), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3350), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114059,23 +114064,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114084,37 +114089,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(1043)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2293), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114132,23 +114137,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114157,37 +114162,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(1044)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2307), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114205,23 +114210,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114230,37 +114235,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(1045)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2010), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3035), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3354), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114278,23 +114283,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114303,110 +114308,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(1046)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(3151), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1047)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2662), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2639), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114424,23 +114429,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114449,37 +114454,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(1048)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2237), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3358), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114497,23 +114502,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1261), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114522,10 +114527,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1633), }, [STATE(1049)] = { - [sym_attribute_item] = STATE(1050), + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2049), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1050)] = { + [sym_function_modifiers] = STATE(3776), + [sym_removed_trait_bound] = STATE(2042), + [sym_extern_modifier] = STATE(2467), + [sym__type] = STATE(2266), + [sym_bracketed_type] = STATE(3722), + [sym_lifetime] = STATE(3750), + [sym_array_type] = STATE(2042), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2042), + [sym_tuple_type] = STATE(2042), + [sym_unit_type] = STATE(2042), + [sym_generic_type] = STATE(2016), + [sym_generic_type_with_turbofish] = STATE(3541), + [sym_bounded_type] = STATE(2042), + [sym_use_bounds] = STATE(3750), + [sym_reference_type] = STATE(2042), + [sym_pointer_type] = STATE(2042), + [sym_never_type] = STATE(2042), + [sym_abstract_type] = STATE(2042), + [sym_dynamic_type] = STATE(2042), + [sym_macro_invocation] = STATE(2042), + [sym_scoped_identifier] = STATE(3201), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1050), + [sym_block_comment] = STATE(1050), + [aux_sym_function_modifiers_repeat1] = STATE(2291), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym_dyn] = ACTIONS(1269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1051)] = { + [sym_attribute_item] = STATE(1052), + [sym_line_comment] = STATE(1051), + [sym_block_comment] = STATE(1051), + [aux_sym_enum_variant_list_repeat1] = STATE(1051), [sym_identifier] = ACTIONS(3360), [anon_sym_LPAREN] = ACTIONS(759), [anon_sym_LBRACK] = ACTIONS(759), @@ -114591,9 +114742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(759), [sym_float_literal] = ACTIONS(759), }, - [STATE(1050)] = { - [sym_line_comment] = STATE(1050), - [sym_block_comment] = STATE(1050), + [STATE(1052)] = { + [sym_line_comment] = STATE(1052), + [sym_block_comment] = STATE(1052), [sym_identifier] = ACTIONS(3362), [anon_sym_LPAREN] = ACTIONS(3364), [anon_sym_LBRACK] = ACTIONS(3364), @@ -114659,144 +114810,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3364), [sym_float_literal] = ACTIONS(3364), }, - [STATE(1051)] = { - [sym_line_comment] = STATE(1051), - [sym_block_comment] = STATE(1051), - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_u8] = ACTIONS(2614), - [anon_sym_i8] = ACTIONS(2614), - [anon_sym_u16] = ACTIONS(2614), - [anon_sym_i16] = ACTIONS(2614), - [anon_sym_u32] = ACTIONS(2614), - [anon_sym_i32] = ACTIONS(2614), - [anon_sym_u64] = ACTIONS(2614), - [anon_sym_i64] = ACTIONS(2614), - [anon_sym_u128] = ACTIONS(2614), - [anon_sym_i128] = ACTIONS(2614), - [anon_sym_isize] = ACTIONS(2614), - [anon_sym_usize] = ACTIONS(2614), - [anon_sym_f32] = ACTIONS(2614), - [anon_sym_f64] = ACTIONS(2614), - [anon_sym_bool] = ACTIONS(2614), - [anon_sym_str] = ACTIONS(2614), - [anon_sym_char] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_COMMA] = ACTIONS(2612), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_gen] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_move] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [sym_integer_literal] = ACTIONS(2612), - [aux_sym_string_literal_token1] = ACTIONS(2612), - [sym_char_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), + [STATE(1053)] = { + [sym_line_comment] = STATE(1053), + [sym_block_comment] = STATE(1053), + [sym_identifier] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_u8] = ACTIONS(2274), + [anon_sym_i8] = ACTIONS(2274), + [anon_sym_u16] = ACTIONS(2274), + [anon_sym_i16] = ACTIONS(2274), + [anon_sym_u32] = ACTIONS(2274), + [anon_sym_i32] = ACTIONS(2274), + [anon_sym_u64] = ACTIONS(2274), + [anon_sym_i64] = ACTIONS(2274), + [anon_sym_u128] = ACTIONS(2274), + [anon_sym_i128] = ACTIONS(2274), + [anon_sym_isize] = ACTIONS(2274), + [anon_sym_usize] = ACTIONS(2274), + [anon_sym_f32] = ACTIONS(2274), + [anon_sym_f64] = ACTIONS(2274), + [anon_sym_bool] = ACTIONS(2274), + [anon_sym_str] = ACTIONS(2274), + [anon_sym_char] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_COMMA] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_gen] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_unsafe] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_yield] = ACTIONS(2274), + [anon_sym_move] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2274), + [sym_integer_literal] = ACTIONS(2272), + [aux_sym_string_literal_token1] = ACTIONS(2272), + [sym_char_literal] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2274), + [anon_sym_false] = ACTIONS(2274), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_crate] = ACTIONS(2614), - [sym_metavariable] = ACTIONS(2612), - [sym__raw_string_literal_start] = ACTIONS(2612), - [sym_float_literal] = ACTIONS(2612), + [sym_self] = ACTIONS(2274), + [sym_super] = ACTIONS(2274), + [sym_crate] = ACTIONS(2274), + [sym_metavariable] = ACTIONS(2272), + [sym__raw_string_literal_start] = ACTIONS(2272), + [sym_float_literal] = ACTIONS(2272), }, - [STATE(1052)] = { - [sym_line_comment] = STATE(1052), - [sym_block_comment] = STATE(1052), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym__] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_DASH_GT] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_gen] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), + [STATE(1054)] = { + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [sym_identifier] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1589), + [anon_sym_i8] = ACTIONS(1589), + [anon_sym_u16] = ACTIONS(1589), + [anon_sym_i16] = ACTIONS(1589), + [anon_sym_u32] = ACTIONS(1589), + [anon_sym_i32] = ACTIONS(1589), + [anon_sym_u64] = ACTIONS(1589), + [anon_sym_i64] = ACTIONS(1589), + [anon_sym_u128] = ACTIONS(1589), + [anon_sym_i128] = ACTIONS(1589), + [anon_sym_isize] = ACTIONS(1589), + [anon_sym_usize] = ACTIONS(1589), + [anon_sym_f32] = ACTIONS(1589), + [anon_sym_f64] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_str] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym__] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_DASH_GT] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_gen] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_unsafe] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [aux_sym_string_literal_token1] = ACTIONS(1591), + [sym_char_literal] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1595), - [sym__raw_string_literal_start] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_crate] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1591), + [sym__raw_string_literal_start] = ACTIONS(1591), + [sym_float_literal] = ACTIONS(1591), }, - [STATE(1053)] = { - [sym_line_comment] = STATE(1053), - [sym_block_comment] = STATE(1053), + [STATE(1055)] = { + [sym_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), [sym_identifier] = ACTIONS(3366), [anon_sym_LPAREN] = ACTIONS(3368), [anon_sym_LBRACK] = ACTIONS(3368), @@ -114869,10 +115020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(1087), 18, + ACTIONS(1101), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -114939,10 +115090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 18, + ACTIONS(2272), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -114961,7 +115112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2614), 40, + ACTIONS(2274), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115007,1468 +115158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1056), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3372), 36, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_where, - anon_sym_extern, - anon_sym_else, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [219] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2136), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3380), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3378), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3382), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [319] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3398), 1, - sym_metavariable, - STATE(2116), 1, - sym_scoped_identifier, - STATE(2163), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3392), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3396), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3390), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3394), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [419] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3400), 1, - sym_identifier, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2109), 1, - sym_scoped_identifier, - STATE(2177), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1059), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3404), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3402), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3406), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [519] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3422), 1, - anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1060), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [598] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3428), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [675] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3440), 1, - anon_sym_BANG, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3438), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3436), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [752] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3444), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3442), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [829] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3450), 1, - anon_sym_POUND, - STATE(1412), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1064), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3448), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3446), 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__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [897] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1423), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1425), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1043), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1041), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1025] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1435), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1437), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1089] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1477), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1479), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1153] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1069), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1419), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1421), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1217] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1469), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1471), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1281] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1431), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1433), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1345] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3455), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3453), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1419] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1427), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1429), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1483] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1039), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1037), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1547] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1075), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2934), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2936), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1610] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2400), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1076), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3461), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [1711] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [1812] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_BANG, - ACTIONS(3489), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3485), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3483), 29, + ACTIONS(3374), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116476,54 +115169,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1879] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3491), 1, - anon_sym_POUND, - STATE(1115), 1, - sym_attribute_item, - STATE(1079), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(759), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3360), 34, + ACTIONS(3372), 36, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116548,95 +115207,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_else, anon_sym_dyn, + sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [1946] = 7, + [219] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, + ACTIONS(1225), 1, + anon_sym_DASH, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(1285), 1, + sym__raw_string_literal_start, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - STATE(1080), 2, + ACTIONS(3376), 1, + sym_identifier, + ACTIONS(3386), 1, + sym_metavariable, + STATE(2126), 1, + sym_scoped_identifier, + STATE(2208), 1, + sym__literal_pattern, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, + sym_generic_type_with_turbofish, + ACTIONS(1277), 2, + anon_sym_true, + anon_sym_false, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3494), 29, + ACTIONS(1273), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3380), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3384), 3, + sym_self, + sym_super, + sym_crate, + STATE(2093), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3378), 7, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2013] = 5, + ACTIONS(3382), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [319] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + ACTIONS(1225), 1, + anon_sym_DASH, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(1285), 1, + sym__raw_string_literal_start, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3398), 1, + sym_metavariable, + STATE(2117), 1, + sym_scoped_identifier, + STATE(2183), 1, + sym__literal_pattern, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, + sym_generic_type_with_turbofish, + ACTIONS(1277), 2, + anon_sym_true, + anon_sym_false, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 9, + ACTIONS(1273), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3392), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3396), 3, + sym_self, + sym_super, + sym_crate, + STATE(2093), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3390), 7, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_LT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2622), 39, + ACTIONS(3394), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116654,41 +115374,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + [419] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1225), 1, + anon_sym_DASH, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(1285), 1, + sym__raw_string_literal_start, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + ACTIONS(3400), 1, sym_identifier, + ACTIONS(3410), 1, + sym_metavariable, + STATE(2112), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym__literal_pattern, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, + sym_generic_type_with_turbofish, + ACTIONS(1277), 2, + anon_sym_true, + anon_sym_false, + STATE(1061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1273), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3404), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - [2076] = 7, + STATE(2093), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3402), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3406), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [519] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(3418), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3420), 1, anon_sym_COLON_COLON, - STATE(1082), 2, + ACTIONS(3422), 1, + anon_sym_LT2, + STATE(1206), 1, + sym_type_arguments, + STATE(1232), 1, + sym_parameters, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(3416), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116706,9 +115494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3502), 29, + ACTIONS(3412), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116735,78 +115522,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2143] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1894), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1896), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2206] = 7, + [596] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_BANG, - ACTIONS(3516), 1, + ACTIONS(3430), 1, anon_sym_COLON_COLON, - STATE(1084), 2, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3434), 1, + anon_sym_move, + STATE(1450), 1, + sym_block, + STATE(3680), 1, + sym_label, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116817,20 +115555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 29, + ACTIONS(3424), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -116843,34 +115578,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2273] = 9, + [675] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3414), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3420), 1, + anon_sym_COLON_COLON, + ACTIONS(3422), 1, anon_sym_LT2, - STATE(1126), 1, + ACTIONS(3440), 1, + anon_sym_BANG, + STATE(1206), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1232), 1, sym_parameters, - STATE(1085), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(3438), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116888,7 +115627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 27, + ACTIONS(3436), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116916,23 +115655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2344] = 9, + [752] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3414), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3418), 1, + anon_sym_BANG, + ACTIONS(3420), 1, + anon_sym_COLON_COLON, + ACTIONS(3422), 1, anon_sym_LT2, - STATE(1126), 1, + STATE(1206), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1232), 1, sym_parameters, - STATE(1086), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3444), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116950,7 +115693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 27, + ACTIONS(3442), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116978,23 +115721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2415] = 9, + [829] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3414), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3422), 1, anon_sym_LT2, - STATE(1126), 1, + ACTIONS(3450), 1, + anon_sym_COLON_COLON, + STATE(1206), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1232), 1, sym_parameters, - STATE(1087), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3448), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117012,7 +115757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 27, + ACTIONS(3446), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117040,66 +115785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2486] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1088), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3530), 3, + ACTIONS(1431), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 17, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1433), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117117,25 +115821,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2587] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(2412), 9, + ACTIONS(1423), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2414), 39, + ACTIONS(1425), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117159,6 +115886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117175,87 +115903,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2650] = 9, + [1031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, - STATE(1132), 1, - sym_parameters, - STATE(1090), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 27, + ACTIONS(1435), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2721] = 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1437), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 9, + ACTIONS(1427), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2738), 39, + ACTIONS(1429), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117279,6 +116004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -117295,204 +116021,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2784] = 5, + [1159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3516), 31, + ACTIONS(1419), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2846] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3487), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3489), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2908] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1421), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3500), 31, + ACTIONS(1043), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2970] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3540), 1, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, + anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3536), 31, + ACTIONS(1041), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117510,31 +116116,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [3034] = 6, + [1287] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_RBRACE, - STATE(1096), 2, + ACTIONS(3456), 1, + anon_sym_POUND, + STATE(1140), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1073), 3, sym_line_comment, sym_block_comment, - ACTIONS(3544), 15, + aux_sym_match_arm_repeat1, + ACTIONS(3454), 14, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117545,12 +116164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3542), 31, + ACTIONS(3452), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117582,86 +116200,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3098] = 5, + [1355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3508), 31, + ACTIONS(1481), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3160] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3550), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3548), 34, + ACTIONS(1483), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117682,43 +116239,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, + anon_sym_if, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3222] = 5, + [1419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 13, + ACTIONS(1441), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3552), 34, + ACTIONS(1443), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117738,165 +116297,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3284] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [3354] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - STATE(1101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3414), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3412), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [3422] = 5, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 13, + ACTIONS(1039), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3564), 34, + ACTIONS(1037), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117917,43 +116357,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, + anon_sym_if, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3484] = 5, + [1547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + ACTIONS(3459), 1, + anon_sym_POUND, + STATE(1120), 1, + sym_attribute_item, + STATE(1077), 3, sym_line_comment, sym_block_comment, - ACTIONS(3570), 13, - anon_sym_SEMI, + aux_sym_enum_variant_list_repeat1, + ACTIONS(759), 11, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(3568), 34, + ACTIONS(3360), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117978,39 +116427,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3546] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, + [1614] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3560), 1, + ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(3572), 1, - anon_sym_move, - STATE(412), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(1104), 2, + ACTIONS(3468), 1, + anon_sym_COLON_COLON, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3464), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118021,69 +116460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [3621] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_LBRACE, - STATE(1105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3487), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 29, + ACTIONS(3462), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -118096,35 +116486,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3684] = 5, + anon_sym_LT2, + [1681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 7, + ACTIONS(2316), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3576), 39, + ACTIONS(2318), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118164,128 +116555,96 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3745] = 6, + [1744] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_LBRACE, - STATE(1107), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3506), 16, - anon_sym_PLUS, + ACTIONS(1601), 1, + anon_sym_LBRACK, + ACTIONS(3324), 1, + anon_sym_SQUOTE, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + anon_sym_LPAREN, + ACTIONS(3476), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3480), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3508), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3482), 1, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [3808] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1108), 2, + ACTIONS(3486), 1, + anon_sym_for, + ACTIONS(3490), 1, + sym_metavariable, + STATE(2528), 1, + sym_where_predicate, + STATE(2656), 1, + sym_scoped_type_identifier, + STATE(2907), 1, + sym_generic_type, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3582), 31, + ACTIONS(3472), 3, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3869] = 5, + anon_sym_EQ, + ACTIONS(3484), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + STATE(3160), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3478), 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, + [1845] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + ACTIONS(3496), 1, + anon_sym_BANG, + ACTIONS(3498), 1, + anon_sym_COLON_COLON, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118296,12 +116655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 31, + ACTIONS(3492), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118320,52 +116681,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3930] = 6, + anon_sym_LT2, + [1912] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1110), 2, + ACTIONS(3504), 1, + anon_sym_BANG, + ACTIONS(3506), 1, + anon_sym_COLON_COLON, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3502), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 29, + ACTIONS(3500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -118378,43 +116741,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3993] = 5, + anon_sym_LT2, + [1979] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3324), 1, + anon_sym_SQUOTE, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + anon_sym_LPAREN, + ACTIONS(3476), 1, + anon_sym_STAR, + ACTIONS(3480), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3482), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3486), 1, + anon_sym_for, + ACTIONS(3490), 1, sym_metavariable, - ACTIONS(3536), 31, + STATE(2424), 1, + sym_where_predicate, + STATE(2656), 1, + sym_scoped_type_identifier, + STATE(2907), 1, + sym_generic_type, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + STATE(1083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3484), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3508), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3160), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3478), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118432,29 +116829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4054] = 5, + [2080] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(3422), 1, + anon_sym_LT2, + STATE(1208), 1, + sym_type_arguments, + STATE(1234), 1, + sym_parameters, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(3512), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118465,20 +116856,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 31, + ACTIONS(3510), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -118490,43 +116881,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4115] = 5, + [2151] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3544), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(1601), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3324), 1, + anon_sym_SQUOTE, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + anon_sym_LPAREN, + ACTIONS(3476), 1, + anon_sym_STAR, + ACTIONS(3480), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3482), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3486), 1, + anon_sym_for, + ACTIONS(3490), 1, sym_metavariable, - ACTIONS(3542), 31, + STATE(2528), 1, + sym_where_predicate, + STATE(2656), 1, + sym_scoped_type_identifier, + STATE(2907), 1, + sym_generic_type, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + STATE(1085), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3484), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3514), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3160), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3478), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118544,37 +116968,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4176] = 5, + [2252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2590), 7, + ACTIONS(1930), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2592), 39, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118614,145 +117026,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4237] = 5, + [2315] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3364), 12, + ACTIONS(3414), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3362), 34, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4298] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3380), 1, - anon_sym_if, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - sym_metavariable, - STATE(2686), 1, - sym_scoped_identifier, - STATE(2950), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3378), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3598), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3594), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [4391] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - STATE(1117), 2, + ACTIONS(3422), 1, + anon_sym_LT2, + STATE(1208), 1, + sym_type_arguments, + STATE(1234), 1, + sym_parameters, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118763,14 +117053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3516), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -118787,29 +117078,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4454] = 6, + [2386] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(3524), 1, + anon_sym_BANG, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - STATE(1118), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3522), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118820,12 +117111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3520), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118844,29 +117137,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4517] = 6, + anon_sym_LT2, + [2453] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1119), 2, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(3422), 1, + anon_sym_LT2, + STATE(1208), 1, + sym_type_arguments, + STATE(1234), 1, + sym_parameters, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3530), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118877,14 +117175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3528), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -118901,35 +117200,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4580] = 5, + [2524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2092), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(2094), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118969,23 +117268,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4641] = 5, + [2587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2674), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2676), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119025,58 +117326,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4702] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [2650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3404), 1, - anon_sym_if, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3608), 1, - sym_identifier, - ACTIONS(3614), 1, - sym_metavariable, - STATE(2801), 1, - sym_scoped_identifier, - STATE(3086), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3402), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1122), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3612), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3610), 20, + ACTIONS(2934), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119094,18 +117362,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [4795] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2713] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(3422), 1, + anon_sym_LT2, + STATE(1208), 1, + sym_type_arguments, + STATE(1234), 1, + sym_parameters, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3534), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119116,14 +117411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 31, + ACTIONS(3532), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -119140,71 +117436,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4856] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [2784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3392), 1, - anon_sym_if, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3620), 1, - sym_identifier, - ACTIONS(3626), 1, - sym_metavariable, - STATE(2811), 1, - sym_scoped_identifier, - STATE(3100), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3390), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1124), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3624), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3622), 20, + ACTIONS(3538), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3536), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119222,24 +117486,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, anon_sym_gen, + anon_sym_impl, anon_sym_union, - [4949] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3466), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -119249,7 +117528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 31, + ACTIONS(3468), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119281,77 +117560,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5010] = 5, + [2908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3632), 31, + ACTIONS(3542), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5071] = 5, + sym_metavariable, + ACTIONS(3540), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3496), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -119361,7 +117642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 31, + ACTIONS(3498), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119369,7 +117650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -119390,140 +117670,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5132] = 6, + [3032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_DASH_GT, - STATE(1128), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3636), 30, + ACTIONS(3546), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5195] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 15, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3522), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5258] = 6, + sym_metavariable, + ACTIONS(3544), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1130), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3524), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -119533,7 +117756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(3526), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119561,20 +117784,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5321] = 6, + [3156] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3646), 1, - anon_sym_DASH_GT, - STATE(1131), 2, + ACTIONS(3440), 1, + anon_sym_BANG, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + STATE(1490), 1, + sym_field_initializer_list, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119590,13 +117820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 30, + ACTIONS(1475), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -119618,20 +117847,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5384] = 6, + [3226] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3652), 1, - anon_sym_DASH_GT, - STATE(1132), 2, + ACTIONS(3556), 1, + anon_sym_RBRACE, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3554), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3552), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3290] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3430), 1, + anon_sym_COLON_COLON, + ACTIONS(3558), 1, + anon_sym_BANG, + STATE(1102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3426), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119647,13 +117942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 30, + anon_sym_as, + ACTIONS(3424), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -119674,27 +117967,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5447] = 5, + [3358] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + ACTIONS(3566), 1, + anon_sym_RBRACE, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3564), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(3562), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3422] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3570), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3568), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119715,44 +118068,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [5508] = 7, + [3484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3654), 1, - anon_sym_else, - STATE(1539), 1, - sym_else_clause, - STATE(1134), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, + ACTIONS(3504), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -119762,7 +118107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1393), 29, + ACTIONS(3506), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119790,17 +118135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [5573] = 5, + anon_sym_else, + [3546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119808,7 +118155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2314), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119848,15 +118195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5634] = 5, + [3607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119864,7 +118211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2322), 39, + ACTIONS(1968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119904,15 +118251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5695] = 5, + [3668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(2666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119920,7 +118267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(2668), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119960,15 +118307,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5756] = 5, + [3729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119976,7 +118323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2398), 39, + ACTIONS(1972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120016,15 +118363,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5817] = 5, + [3790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120032,7 +118379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 39, + ACTIONS(1976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120072,15 +118419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5878] = 5, + [3851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120088,7 +118435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2410), 39, + ACTIONS(1980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120128,15 +118475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5939] = 5, + [3912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120144,7 +118491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2450), 39, + ACTIONS(1984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120184,15 +118531,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6000] = 5, + [3973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1113), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1986), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1988), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4034] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120200,7 +118603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2458), 39, + ACTIONS(1992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120240,15 +118643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6061] = 5, + [4095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 7, + ACTIONS(2680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120256,7 +118659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2462), 39, + ACTIONS(2682), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120296,15 +118699,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6122] = 5, + [4156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120312,7 +118715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2466), 39, + ACTIONS(1996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120352,15 +118755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6183] = 5, + [4217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(2684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120368,7 +118771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2474), 39, + ACTIONS(2686), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120408,15 +118811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6244] = 5, + [4278] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120424,7 +118827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(2000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120464,15 +118867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6305] = 5, + [4339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120480,7 +118883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 39, + ACTIONS(2004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120520,23 +118923,28 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6366] = 5, + [4400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3364), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(3362), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120557,34 +118965,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [6427] = 5, + [4461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2548), 7, + ACTIONS(2272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120592,7 +118995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2550), 39, + ACTIONS(2274), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120632,15 +119035,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6488] = 5, + [4522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120648,7 +119051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2554), 39, + ACTIONS(2008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120688,39 +119091,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6549] = 5, + [4583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3504), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 29, + ACTIONS(3506), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -120733,198 +119136,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [6610] = 5, + [4646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3656), 31, + ACTIONS(2688), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6671] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2690), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4707] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, - anon_sym_DASH_GT, - STATE(1153), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3662), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1667), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3392), 1, + anon_sym_if, + ACTIONS(3574), 1, + sym_identifier, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(3582), 1, + sym_metavariable, + STATE(2774), 1, + sym_scoped_identifier, + STATE(2984), 1, + sym__literal_pattern, + STATE(3594), 1, + sym_bracketed_type, + STATE(3611), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3390), 2, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3660), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6734] = 6, + STATE(1125), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3580), 3, + sym_self, + sym_super, + sym_crate, + STATE(2385), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3576), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [4800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, - anon_sym_DASH_GT, - STATE(1154), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3666), 30, + ACTIONS(2692), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6797] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2694), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3676), 1, - anon_sym_DASH_GT, - STATE(1155), 2, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120940,7 +119358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 30, + ACTIONS(3532), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120971,15 +119389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6860] = 5, + [4924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2640), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120987,7 +119405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2642), 39, + ACTIONS(2012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121027,15 +119445,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6921] = 5, + [4985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2644), 7, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121043,7 +119461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2646), 39, + ACTIONS(2700), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121083,15 +119501,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6982] = 5, + [5046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2648), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121099,7 +119517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2650), 39, + ACTIONS(2016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121139,15 +119557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7043] = 5, + [5107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2652), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121155,7 +119573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2654), 39, + ACTIONS(2020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121195,71 +119613,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7104] = 5, + [5168] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2660), 7, + ACTIONS(3534), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5231] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2662), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7165] = 5, + STATE(1133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121267,7 +119743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2690), 39, + ACTIONS(2024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121307,15 +119783,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7226] = 5, + [5355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121323,7 +119799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2694), 39, + ACTIONS(2028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121363,15 +119839,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7287] = 5, + [5416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121379,7 +119855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2698), 39, + ACTIONS(2032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121419,15 +119895,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7348] = 5, + [5477] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121435,7 +119911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121475,15 +119951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7409] = 5, + [5538] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121491,7 +119967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(2040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121531,15 +120007,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7470] = 5, + [5599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121547,7 +120023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2742), 39, + ACTIONS(2044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121587,23 +120063,199 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7531] = 5, + [5660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 7, + ACTIONS(3592), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3590), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5721] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1141), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3596), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3594), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5782] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3600), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3598), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5843] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1143), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2272), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2746), 39, + ACTIONS(2274), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121621,37 +120273,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [7592] = 5, + [5904] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 7, + ACTIONS(2702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121659,7 +120303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2750), 39, + ACTIONS(2704), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121699,15 +120343,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7653] = 5, + [5965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 7, + ACTIONS(2048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121715,7 +120359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2754), 39, + ACTIONS(2050), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121755,15 +120399,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7714] = 5, + [6026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 7, + ACTIONS(2706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121771,7 +120415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2758), 39, + ACTIONS(2708), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121811,15 +120455,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7775] = 5, + [6087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2760), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121827,7 +120471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2762), 39, + ACTIONS(2054), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121867,15 +120511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7836] = 5, + [6148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 7, + ACTIONS(2056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121883,7 +120527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2766), 39, + ACTIONS(2058), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121923,15 +120567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7897] = 5, + [6209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 7, + ACTIONS(2060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121939,7 +120583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2770), 39, + ACTIONS(2062), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121979,15 +120623,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7958] = 5, + [6270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121995,7 +120639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2774), 39, + ACTIONS(2066), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122035,15 +120679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8019] = 5, + [6331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2776), 7, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122051,7 +120695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2778), 39, + ACTIONS(2070), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122091,15 +120735,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8080] = 5, + [6392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 7, + ACTIONS(2072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122107,7 +120751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2782), 39, + ACTIONS(2074), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122147,15 +120791,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8141] = 5, + [6453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 7, + ACTIONS(2710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122163,7 +120807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2786), 39, + ACTIONS(2712), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122203,15 +120847,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8202] = 5, + [6514] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 7, + ACTIONS(2714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122219,7 +120863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2790), 39, + ACTIONS(2716), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122259,15 +120903,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8263] = 5, + [6575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 7, + ACTIONS(2524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122275,7 +120919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2794), 39, + ACTIONS(2526), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122315,15 +120959,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8324] = 5, + [6636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 7, + ACTIONS(2652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122331,7 +120975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2798), 39, + ACTIONS(2654), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122371,15 +121015,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8385] = 5, + [6697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 7, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122387,7 +121031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2802), 39, + ACTIONS(2078), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122427,15 +121071,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8446] = 5, + [6758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 7, + ACTIONS(2080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122443,7 +121087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2818), 39, + ACTIONS(2082), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122483,15 +121127,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8507] = 5, + [6819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122499,7 +121143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2720), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122539,15 +121183,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8568] = 5, + [6880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122555,7 +121199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2086), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122595,15 +121239,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8629] = 5, + [6941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1475), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7004] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1162), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122611,7 +121312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2724), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122651,15 +121352,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8690] = 5, + [7065] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + ACTIONS(3430), 1, + anon_sym_COLON_COLON, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3558), 1, + anon_sym_BANG, + ACTIONS(3604), 1, + anon_sym_move, + STATE(407), 1, + sym_block, + STATE(3463), 1, + sym_label, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2994), 7, + ACTIONS(3426), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3424), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [7140] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1164), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122667,7 +121431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2996), 39, + ACTIONS(2730), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122707,15 +121471,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8751] = 5, + [7201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122723,7 +121487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2734), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122763,15 +121527,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8812] = 5, + [7262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122779,7 +121543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2090), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122819,15 +121583,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8873] = 5, + [7323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(2736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122835,7 +121599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3044), 39, + ACTIONS(2738), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122875,15 +121639,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8934] = 5, + [7384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 7, + ACTIONS(2974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122891,7 +121655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2274), 39, + ACTIONS(2976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122931,15 +121695,92 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8995] = 5, + [7445] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(3222), 1, + anon_sym_fn, + ACTIONS(3606), 1, + sym_identifier, + ACTIONS(3608), 1, + anon_sym_LPAREN, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(3614), 1, + anon_sym_default, + ACTIONS(3616), 1, + anon_sym_for, + ACTIONS(3622), 1, + sym_metavariable, + STATE(1087), 1, + sym_scoped_type_identifier, + STATE(1226), 1, + sym_generic_type, + STATE(1638), 1, + sym_for_lifetimes, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(3616), 1, + sym_scoped_identifier, + STATE(3651), 1, + sym_generic_type_with_turbofish, + STATE(3663), 1, + sym_bracketed_type, + STATE(3748), 1, + sym_function_modifiers, + ACTIONS(3618), 2, + anon_sym_gen, + anon_sym_union, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3620), 3, + sym_self, + sym_super, + sym_crate, + STATE(1459), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3610), 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, + [7548] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1170), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122947,7 +121788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2742), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122987,241 +121828,92 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9056] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3680), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + [7609] = 26, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3678), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3684), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3682), 31, - anon_sym_SEMI, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(1621), 1, + anon_sym_fn, + ACTIONS(3474), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9178] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3482), 1, anon_sym_COLON_COLON, - STATE(1194), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3528), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3526), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9241] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3690), 1, - anon_sym_DASH_GT, - STATE(1195), 2, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3624), 1, + sym_identifier, + ACTIONS(3628), 1, + anon_sym_default, + ACTIONS(3630), 1, + anon_sym_for, + STATE(1615), 1, + sym_for_lifetimes, + STATE(2020), 1, + sym_generic_type, + STATE(2215), 1, + sym_scoped_type_identifier, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(3598), 1, + sym_bracketed_type, + STATE(3650), 1, + sym_function_modifiers, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + ACTIONS(3484), 2, + anon_sym_gen, + anon_sym_union, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3686), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9304] = 5, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + STATE(2068), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3626), 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, + [7712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2096), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123229,7 +121921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 39, + ACTIONS(2098), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123269,15 +121961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9365] = 5, + [7773] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123285,7 +121977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 39, + ACTIONS(2746), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123325,15 +122017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9426] = 5, + [7834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123341,7 +122033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2102), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123381,15 +122073,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9487] = 5, + [7895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 7, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123397,7 +122089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2250), 39, + ACTIONS(2500), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123437,15 +122129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9548] = 5, + [7956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 7, + ACTIONS(2748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123453,7 +122145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2254), 39, + ACTIONS(2750), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123493,15 +122185,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9609] = 5, + [8017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 7, + ACTIONS(2752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123509,7 +122201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2258), 39, + ACTIONS(2754), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123549,15 +122241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9670] = 5, + [8078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2264), 7, + ACTIONS(2104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123565,7 +122257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2266), 39, + ACTIONS(2106), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123605,15 +122297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9731] = 5, + [8139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2268), 7, + ACTIONS(2108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123621,7 +122313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2270), 39, + ACTIONS(2110), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123661,15 +122353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9792] = 5, + [8200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 7, + ACTIONS(2760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123677,7 +122369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2278), 39, + ACTIONS(2762), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123717,15 +122409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9853] = 5, + [8261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 7, + ACTIONS(2764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123733,7 +122425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2282), 39, + ACTIONS(2766), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123773,15 +122465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9914] = 5, + [8322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 7, + ACTIONS(2112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123789,7 +122481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(2114), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123829,15 +122521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9975] = 5, + [8383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(2116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123845,7 +122537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2374), 39, + ACTIONS(2118), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123885,15 +122577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10036] = 5, + [8444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123901,7 +122593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 39, + ACTIONS(2122), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123941,15 +122633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10097] = 5, + [8505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123957,7 +122649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 39, + ACTIONS(2770), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123997,15 +122689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10158] = 5, + [8566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124013,7 +122705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 39, + ACTIONS(2126), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124053,15 +122745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10219] = 5, + [8627] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124069,7 +122761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(2130), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124109,15 +122801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10280] = 5, + [8688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 7, + ACTIONS(2132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124125,7 +122817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2588), 39, + ACTIONS(2134), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124165,15 +122857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10341] = 5, + [8749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2604), 7, + ACTIONS(2136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124181,7 +122873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2606), 39, + ACTIONS(2138), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124221,15 +122913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10402] = 5, + [8810] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 7, + ACTIONS(2140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124237,7 +122929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2634), 39, + ACTIONS(2142), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124277,15 +122969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10463] = 5, + [8871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 7, + ACTIONS(2144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124293,7 +122985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2826), 39, + ACTIONS(2146), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124333,15 +123025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10524] = 5, + [8932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124349,7 +123041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2150), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124389,15 +123081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10585] = 5, + [8993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124405,7 +123097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2774), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124445,15 +123137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10646] = 5, + [9054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(2776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124461,7 +123153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(2778), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124501,15 +123193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10707] = 5, + [9115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124517,7 +123209,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2154), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9176] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1667), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3380), 1, + anon_sym_if, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3638), 1, + sym_metavariable, + STATE(2754), 1, + sym_scoped_identifier, + STATE(2943), 1, + sym__literal_pattern, + STATE(3594), 1, + sym_bracketed_type, + STATE(3611), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3378), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3636), 3, + sym_self, + sym_super, + sym_crate, + STATE(2385), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3634), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [9269] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2780), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2782), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9330] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2784), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2786), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124557,15 +123433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10768] = 5, + [9391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124573,7 +123449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2158), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124613,15 +123489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10829] = 5, + [9452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124629,7 +123505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2790), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124669,15 +123545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10890] = 5, + [9513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124685,7 +123561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(2162), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124725,15 +123601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10951] = 5, + [9574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(2164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124741,7 +123617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 39, + ACTIONS(2166), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124781,15 +123657,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11012] = 5, + [9635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(3642), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3640), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [9696] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1204), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124797,7 +123729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 39, + ACTIONS(2794), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124837,23 +123769,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11073] = 5, + [9757] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1667), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3404), 1, + anon_sym_if, + ACTIONS(3578), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3650), 1, sym_metavariable, - ACTIONS(2088), 39, + STATE(2590), 1, + sym_scoped_identifier, + STATE(2889), 1, + sym__literal_pattern, + STATE(3594), 1, + sym_bracketed_type, + STATE(3611), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3402), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3648), 3, + sym_self, + sym_super, + sym_crate, + STATE(2385), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3646), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124871,37 +123838,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11134] = 5, + [9850] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(3654), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3652), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [9911] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1207), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124909,7 +123913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 39, + ACTIONS(2170), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124949,15 +123953,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11195] = 5, + [9972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3658), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3656), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10033] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124965,7 +124025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 39, + ACTIONS(2174), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125005,15 +124065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11256] = 5, + [10094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125021,7 +124081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 39, + ACTIONS(2178), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125061,15 +124121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11317] = 5, + [10155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125077,7 +124137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 39, + ACTIONS(2182), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125117,15 +124177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11378] = 5, + [10216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125133,7 +124193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 39, + ACTIONS(2186), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125173,15 +124233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11439] = 5, + [10277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125189,7 +124249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 39, + ACTIONS(2190), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125229,15 +124289,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11500] = 5, + [10338] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125245,7 +124305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 39, + ACTIONS(2798), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125285,15 +124345,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11561] = 5, + [10399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125301,7 +124361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(2802), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125341,15 +124401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11622] = 5, + [10460] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125357,7 +124417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(2806), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125397,15 +124457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11683] = 5, + [10521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125413,7 +124473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(2194), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125453,15 +124513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11744] = 5, + [10582] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125469,7 +124529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 39, + ACTIONS(2822), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125509,15 +124569,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11805] = 5, + [10643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1219), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3374), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10704] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125525,7 +124641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 39, + ACTIONS(2198), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125565,15 +124681,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11866] = 5, + [10765] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + ACTIONS(3664), 1, + anon_sym_DASH_GT, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(3662), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3660), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10828] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1222), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125581,7 +124754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 39, + ACTIONS(2202), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125621,15 +124794,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11927] = 5, + [10889] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(3512), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3510), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10952] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1224), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125637,7 +124867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 39, + ACTIONS(2206), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125677,15 +124907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11988] = 5, + [11013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125693,7 +124923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(2210), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125733,15 +124963,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12049] = 5, + [11074] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(3518), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3516), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11137] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125749,7 +125036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2214), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125789,15 +125076,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12110] = 5, + [11198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125805,7 +125092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2830), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125845,15 +125132,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12171] = 5, + [11259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3668), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3666), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11320] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125861,7 +125204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(2218), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125901,15 +125244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12232] = 5, + [11381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 7, + ACTIONS(2220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125917,7 +125260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2246), 39, + ACTIONS(2222), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125957,15 +125300,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12293] = 5, + [11442] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + ACTIONS(3674), 1, + anon_sym_DASH_GT, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 7, + ACTIONS(3672), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3670), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11505] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125973,7 +125373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2262), 39, + ACTIONS(2226), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126013,71 +125413,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12354] = 5, + [11566] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3692), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12415] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1247), 2, + ACTIONS(3680), 1, + anon_sym_DASH_GT, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126093,7 +125439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 31, + ACTIONS(3676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126121,19 +125467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12476] = 5, + [11629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2284), 7, + ACTIONS(2512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126141,7 +125486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2286), 39, + ACTIONS(2514), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126181,15 +125526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12537] = 5, + [11690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 7, + ACTIONS(2228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126197,7 +125542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2294), 39, + ACTIONS(2230), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126237,15 +125582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12598] = 5, + [11751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 7, + ACTIONS(2232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126253,7 +125598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2298), 39, + ACTIONS(2234), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126293,15 +125638,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12659] = 5, + [11812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 7, + ACTIONS(2236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126309,7 +125654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2302), 39, + ACTIONS(2238), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126349,15 +125694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12720] = 5, + [11873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(2240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126365,7 +125710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2306), 39, + ACTIONS(2242), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126405,15 +125750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12781] = 5, + [11934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126421,7 +125766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2310), 39, + ACTIONS(2246), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126461,71 +125806,192 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12842] = 5, + [11995] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_BANG, + ACTIONS(3430), 1, + anon_sym_COLON_COLON, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3682), 1, + anon_sym_move, + STATE(488), 1, + sym_block, + STATE(3744), 1, + sym_label, + STATE(1241), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3424), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [12070] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3684), 1, + anon_sym_else, + STATE(1475), 1, + sym_else_clause, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 7, + ACTIONS(1415), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1413), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + [12135] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2318), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12903] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3686), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126533,7 +125999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2326), 39, + ACTIONS(2250), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126573,15 +126039,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12964] = 5, + [12257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 7, + ACTIONS(2252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126589,7 +126055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2330), 39, + ACTIONS(2254), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126629,15 +126095,92 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13025] = 5, + [12318] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(3186), 1, + anon_sym_fn, + ACTIONS(3690), 1, + sym_identifier, + ACTIONS(3692), 1, + anon_sym_LPAREN, + ACTIONS(3696), 1, + anon_sym_COLON_COLON, + ACTIONS(3698), 1, + anon_sym_default, + ACTIONS(3700), 1, + anon_sym_for, + ACTIONS(3706), 1, + sym_metavariable, + STATE(1594), 1, + sym_scoped_type_identifier, + STATE(1607), 1, + sym_for_lifetimes, + STATE(1648), 1, + sym_generic_type, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(3606), 1, + sym_function_modifiers, + STATE(3642), 1, + sym_scoped_identifier, + STATE(3661), 1, + sym_generic_type_with_turbofish, + STATE(3667), 1, + sym_bracketed_type, + ACTIONS(3702), 2, + anon_sym_gen, + anon_sym_union, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3704), 3, + sym_self, + sym_super, + sym_crate, + STATE(1739), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3694), 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, + [12421] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126645,7 +126188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2334), 39, + ACTIONS(2582), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126685,15 +126228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13086] = 5, + [12482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126701,7 +126244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2338), 39, + ACTIONS(2258), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126741,15 +126284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13147] = 5, + [12543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126757,7 +126300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2342), 39, + ACTIONS(2590), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126797,15 +126340,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13208] = 5, + [12604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(2612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126813,7 +126356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2346), 39, + ACTIONS(2614), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126853,15 +126396,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13269] = 5, + [12665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 7, + ACTIONS(2260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126869,7 +126412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2354), 39, + ACTIONS(2262), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126909,15 +126452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13330] = 5, + [12726] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126925,7 +126468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2358), 39, + ACTIONS(2664), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126965,15 +126508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13391] = 5, + [12787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(2264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126981,7 +126524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2362), 39, + ACTIONS(2266), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127021,15 +126564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13452] = 5, + [12848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(2836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127037,7 +126580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2366), 39, + ACTIONS(2838), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127077,15 +126620,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13513] = 5, + [12909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(2670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127093,7 +126636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2370), 39, + ACTIONS(2672), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127133,15 +126676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13574] = 5, + [12970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(2268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127149,7 +126692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2378), 39, + ACTIONS(2270), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127189,15 +126732,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13635] = 5, + [13031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127205,7 +126748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 39, + ACTIONS(2842), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127245,15 +126788,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13696] = 5, + [13092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(3710), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3708), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13153] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127261,7 +126860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2406), 39, + ACTIONS(2810), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127301,15 +126900,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13757] = 5, + [13214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(2812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127317,7 +126916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2418), 39, + ACTIONS(2814), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127357,15 +126956,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13818] = 5, + [13275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(2506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127373,7 +126972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2422), 39, + ACTIONS(2508), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +127012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13879] = 5, + [13336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(2844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +127028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2426), 39, + ACTIONS(2846), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127469,15 +127068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13940] = 5, + [13397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 7, + ACTIONS(2816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127485,7 +127084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3048), 39, + ACTIONS(2818), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127525,15 +127124,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14001] = 5, + [13458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127541,7 +127140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2434), 39, + ACTIONS(1816), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127581,15 +127180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14062] = 5, + [13519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127597,7 +127196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2438), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127637,15 +127236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14123] = 5, + [13580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(2848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127653,7 +127252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2442), 39, + ACTIONS(2850), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127693,72 +127292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14184] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1276), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3498), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3500), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [14247] = 5, + [13641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127766,7 +127308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2454), 39, + ACTIONS(2854), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127806,15 +127348,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14308] = 5, + [13702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 7, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127822,7 +127364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2470), 39, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127862,15 +127404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14369] = 5, + [13763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127878,7 +127420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(2826), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127918,15 +127460,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14430] = 5, + [13824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(2856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127934,7 +127476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(2858), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127974,15 +127516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14491] = 5, + [13885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127990,7 +127532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(2862), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128030,15 +127572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, + [13946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(2864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128046,7 +127588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2490), 39, + ACTIONS(2866), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128086,15 +127628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14613] = 5, + [14007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128102,7 +127644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 39, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128142,15 +127684,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14674] = 5, + [14068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128158,7 +127700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 39, + ACTIONS(2870), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128198,15 +127740,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14735] = 5, + [14129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128214,7 +127756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 39, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128254,15 +127796,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14796] = 5, + [14190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(2872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128270,7 +127812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(2874), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128310,15 +127852,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14857] = 5, + [14251] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(1506), 1, + sym_arguments, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(3716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14316] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128326,7 +127926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128366,15 +127966,128 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14918] = 5, + [14377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3718), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14438] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACE, + STATE(1280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3496), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3498), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [14501] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128382,7 +128095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(2834), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128422,15 +128135,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14979] = 5, + [14562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128438,7 +128151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 39, + ACTIONS(2996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128478,15 +128191,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15040] = 5, + [14623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(3466), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3468), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [14686] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128494,7 +128264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 39, + ACTIONS(2910), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128534,15 +128304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15101] = 5, + [14747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128550,7 +128320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2558), 39, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128590,15 +128360,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15162] = 5, + [14808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128606,7 +128376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128646,15 +128416,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15223] = 5, + [14869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128662,7 +128432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2568), 39, + ACTIONS(1832), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128702,15 +128472,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15284] = 5, + [14930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128718,7 +128488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2576), 39, + ACTIONS(1836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128758,15 +128528,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15345] = 5, + [14991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1289), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3494), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3492), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [15052] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128774,7 +128600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(3000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128814,15 +128640,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15406] = 5, + [15113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 7, + ACTIONS(3728), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3726), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15174] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1292), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128830,7 +128712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2584), 39, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128870,15 +128752,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15467] = 5, + [15235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 7, + ACTIONS(1585), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1587), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15296] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128886,7 +128824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2610), 39, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128926,23 +128864,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15528] = 5, + [15357] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3554), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2618), 39, + ACTIONS(3552), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128960,37 +128906,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [15589] = 5, + [15418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129006,7 +128944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 31, + ACTIONS(3730), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129034,19 +128972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15650] = 5, + [15479] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + ACTIONS(3738), 1, + anon_sym_DASH_GT, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129062,7 +129002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3706), 31, + ACTIONS(3734), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129090,75 +129030,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15542] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3744), 1, anon_sym_DASH_GT, + STATE(1298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3742), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3740), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15711] = 5, + [15605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + ACTIONS(3750), 1, + anon_sym_DASH_GT, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(3748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3746), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15668] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1300), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3754), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3752), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2626), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15772] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 7, + ACTIONS(3010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129166,7 +129219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2630), 39, + ACTIONS(3012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129206,15 +129259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15833] = 5, + [15790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 7, + ACTIONS(3014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129222,7 +129275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2638), 39, + ACTIONS(3016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129262,15 +129315,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15894] = 5, + [15851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2656), 7, + ACTIONS(2276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129278,7 +129331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2658), 39, + ACTIONS(2278), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129318,15 +129371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15955] = 5, + [15912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129334,7 +129387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2666), 39, + ACTIONS(2282), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129374,15 +129427,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16016] = 5, + [15973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(3758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129390,7 +129443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2670), 39, + ACTIONS(3756), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129430,15 +129483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16077] = 5, + [16034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(2284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129446,7 +129499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2674), 39, + ACTIONS(2286), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129486,15 +129539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16138] = 5, + [16095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 7, + ACTIONS(2288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129502,7 +129555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(2290), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129542,15 +129595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16199] = 5, + [16156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 7, + ACTIONS(2880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129558,7 +129611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2682), 39, + ACTIONS(2882), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129598,15 +129651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16260] = 5, + [16217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(2884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129614,7 +129667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2686), 39, + ACTIONS(2886), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129654,15 +129707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16321] = 5, + [16278] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2708), 7, + ACTIONS(2292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129670,7 +129723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2710), 39, + ACTIONS(2294), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129710,15 +129763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16382] = 5, + [16339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(3018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129726,7 +129779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2714), 39, + ACTIONS(3020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129766,7 +129819,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16443] = 5, + [16400] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, + STATE(1312), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3528), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -129774,7 +129884,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(2888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129782,7 +129892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2718), 39, + ACTIONS(2890), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129822,7 +129932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16504] = 5, + [16524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -129830,7 +129940,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 7, + ACTIONS(3022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129838,7 +129948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2722), 39, + ACTIONS(3024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129878,7 +129988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16565] = 5, + [16585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -129886,7 +129996,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(2892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129894,7 +130004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(2894), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129934,7 +130044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16626] = 5, + [16646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -129942,7 +130052,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 7, + ACTIONS(3026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129950,7 +130060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2730), 39, + ACTIONS(3028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129990,7 +130100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16687] = 5, + [16707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -129998,7 +130108,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 7, + ACTIONS(2896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130006,7 +130116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2734), 39, + ACTIONS(2898), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130046,7 +130156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16748] = 5, + [16768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -130054,7 +130164,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 7, + ACTIONS(2900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130062,7 +130172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2806), 39, + ACTIONS(2902), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130102,7 +130212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16809] = 5, + [16829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -130110,7 +130220,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 7, + ACTIONS(2296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130118,7 +130228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2810), 39, + ACTIONS(2298), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130158,7 +130268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16870] = 5, + [16890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -130166,7 +130276,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(3762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3760), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1321), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130174,7 +130340,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2814), 39, + ACTIONS(2906), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17012] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3030), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3032), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17073] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1323), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2912), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2914), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130214,15 +130492,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16931] = 5, + [17134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130230,7 +130508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2822), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130270,15 +130548,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16992] = 5, + [17195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(3038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130286,7 +130564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(3040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130326,15 +130604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17053] = 5, + [17256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(2916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130342,7 +130620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(2918), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130382,15 +130660,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17114] = 5, + [17317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(3042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130398,7 +130676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130438,15 +130716,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17175] = 5, + [17378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2942), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130454,7 +130732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130494,15 +130772,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17236] = 5, + [17439] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + ACTIONS(3768), 1, + anon_sym_DASH_GT, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(3766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3764), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17502] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130510,7 +130845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(1820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130550,15 +130885,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17297] = 5, + [17563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, + ACTIONS(2502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130566,7 +130901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(2504), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130606,15 +130941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17358] = 5, + [17624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 7, + ACTIONS(2300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130622,7 +130957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(2302), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130662,15 +130997,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17419] = 5, + [17685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130678,7 +131013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(1824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130718,15 +131053,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17480] = 5, + [17746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130734,7 +131069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(1828), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130774,71 +131109,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17541] = 5, + [17807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(3772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3770), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2968), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17602] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(3776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3774), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17929] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130846,7 +131237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(1840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130886,15 +131277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17663] = 5, + [17990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(2304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130902,7 +131293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(2306), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130942,15 +131333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17724] = 5, + [18051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(2308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130958,7 +131349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(2310), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130998,15 +131389,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17785] = 5, + [18112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(2312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131014,7 +131405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(2314), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131054,15 +131445,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17846] = 5, + [18173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131070,7 +131461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(1844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131110,15 +131501,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17907] = 5, + [18234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131126,7 +131517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2518), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131166,15 +131557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17968] = 5, + [18295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131182,7 +131573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(1848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131222,15 +131613,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18029] = 5, + [18356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(2520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131238,7 +131629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(2522), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131278,23 +131669,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18090] = 5, + [18417] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3564), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(3562), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131312,37 +131711,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18151] = 5, + [18478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131350,7 +131741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(1852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131390,15 +131781,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18212] = 5, + [18539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131406,7 +131797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2586), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131446,15 +131837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18273] = 5, + [18600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131462,7 +131853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(1856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131502,15 +131893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18334] = 5, + [18661] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131518,7 +131909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(1860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131558,15 +131949,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18395] = 5, + [18722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(2592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131574,7 +131965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(2594), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131614,15 +132005,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18456] = 5, + [18783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131630,7 +132021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2430), 39, + ACTIONS(1864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131670,15 +132061,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18517] = 5, + [18844] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131686,7 +132077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(1868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131726,15 +132117,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18578] = 5, + [18905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131742,7 +132133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(1872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131782,15 +132173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18639] = 5, + [18966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131798,7 +132189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(2322), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131838,15 +132229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18700] = 5, + [19027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(2324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131854,7 +132245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(2326), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131894,15 +132285,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18761] = 5, + [19088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131910,7 +132301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(1876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131950,127 +132341,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18822] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1352), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3710), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18883] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3714), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18944] = 5, + [19149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132078,7 +132357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(1880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132118,15 +132397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19005] = 5, + [19210] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132134,7 +132413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(1884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132174,15 +132453,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19066] = 5, + [19271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132190,7 +132469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(1888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132230,15 +132509,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19127] = 5, + [19332] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132246,7 +132525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(1892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132286,15 +132565,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19188] = 5, + [19393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2272), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(2274), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19454] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132302,7 +132637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(1896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132342,15 +132677,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19249] = 5, + [19515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132358,7 +132693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2598), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132398,15 +132733,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19310] = 5, + [19576] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132414,7 +132749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132454,15 +132789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19371] = 5, + [19637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132470,7 +132805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132510,15 +132845,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19432] = 5, + [19698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132526,7 +132861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132566,15 +132901,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19493] = 5, + [19759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132582,7 +132917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(1912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132622,15 +132957,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19554] = 5, + [19820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2516), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2518), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19881] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132638,7 +133029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2602), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132678,15 +133069,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19615] = 5, + [19942] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132694,7 +133085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(1916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132734,15 +133125,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19676] = 5, + [20003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132750,7 +133141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2330), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132790,15 +133181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19737] = 5, + [20064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132806,7 +133197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(1920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132846,15 +133237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19798] = 5, + [20125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132862,7 +133253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132902,15 +133293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19859] = 5, + [20186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132918,7 +133309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132958,15 +133349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19920] = 5, + [20247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132974,7 +133365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133014,15 +133405,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19981] = 5, + [20308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133030,7 +133421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2606), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133070,15 +133461,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20042] = 5, + [20369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133086,7 +133477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133126,15 +133517,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20103] = 5, + [20430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133142,7 +133533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2610), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133182,15 +133573,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20164] = 5, + [20491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133198,7 +133589,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(1964), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20552] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2332), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2334), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133238,12 +133685,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20225] = 5, + [20613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, ACTIONS(1938), 7, @@ -133294,15 +133741,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20286] = 5, + [20674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133310,7 +133757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2338), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133350,15 +133797,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20347] = 5, + [20735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133366,7 +133813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2342), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133406,15 +133853,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20408] = 5, + [20796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133422,7 +133869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2618), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133462,15 +133909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20469] = 5, + [20857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133478,7 +133925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133518,15 +133965,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20530] = 5, + [20918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133534,7 +133981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2622), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133574,15 +134021,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20591] = 5, + [20979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133590,7 +134037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(2346), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133630,15 +134077,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20652] = 5, + [21040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133646,7 +134093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133686,15 +134133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20713] = 5, + [21101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133702,7 +134149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(1952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133742,15 +134189,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20774] = 5, + [21162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133758,7 +134205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(1956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133798,15 +134245,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20835] = 5, + [21223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133814,7 +134261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(2350), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133854,15 +134301,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20896] = 5, + [21284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(2624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133870,7 +134317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 39, + ACTIONS(2626), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133910,15 +134357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20957] = 5, + [21345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133926,7 +134373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(2354), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133966,15 +134413,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21018] = 5, + [21406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133982,7 +134429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(1960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134022,15 +134469,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21079] = 5, + [21467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134038,7 +134485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(2358), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134078,15 +134525,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21140] = 5, + [21528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134094,7 +134541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(2362), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134134,15 +134581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21201] = 5, + [21589] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(3046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134150,7 +134597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(3048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134190,15 +134637,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21262] = 5, + [21650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134206,7 +134653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(2630), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134246,15 +134693,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21323] = 5, + [21711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134262,7 +134709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(2366), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134302,15 +134749,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21384] = 5, + [21772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134318,7 +134765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(2370), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134358,15 +134805,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21445] = 5, + [21833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + ACTIONS(3778), 1, + anon_sym_LBRACE, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(3524), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3526), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [21896] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134374,7 +134878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(2374), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134414,15 +134918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21506] = 5, + [21957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134430,7 +134934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(2634), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134470,15 +134974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21567] = 5, + [22018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134486,7 +134990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(2378), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134526,15 +135030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21628] = 5, + [22079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134542,7 +135046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(2382), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134582,15 +135086,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21689] = 5, + [22140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134598,7 +135102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 39, + ACTIONS(2386), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134638,15 +135142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21750] = 5, + [22201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(2474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134654,7 +135158,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(2476), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22262] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2636), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2638), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134694,15 +135254,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21811] = 5, + [22323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134710,7 +135270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 39, + ACTIONS(2480), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134750,15 +135310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21872] = 5, + [22384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134766,7 +135326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 39, + ACTIONS(2484), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134806,15 +135366,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21933] = 5, + [22445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(2486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134822,7 +135382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 39, + ACTIONS(2488), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134862,15 +135422,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21994] = 5, + [22506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(2490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134878,7 +135438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 39, + ACTIONS(2492), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134918,15 +135478,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22055] = 5, + [22567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134934,7 +135494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 39, + ACTIONS(2496), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134974,15 +135534,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22116] = 5, + [22628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(2640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134990,7 +135550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 39, + ACTIONS(2642), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135030,15 +135590,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22177] = 5, + [22689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(2644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135046,7 +135606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 39, + ACTIONS(2646), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135086,15 +135646,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22238] = 5, + [22750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135102,7 +135662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 39, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135142,19 +135702,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22299] = 7, + [22811] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1428), 1, + STATE(1441), 1, sym_label, - STATE(1409), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135170,7 +135730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 29, + ACTIONS(3780), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135200,28 +135760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [22364] = 5, + [22876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2942), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(2614), 34, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135242,45 +135797,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22425] = 5, + [22937] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + ACTIONS(1255), 1, + anon_sym_fn, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(3240), 1, + anon_sym_for, + ACTIONS(3474), 1, + anon_sym_LPAREN, + ACTIONS(3482), 1, + anon_sym_COLON_COLON, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3628), 1, + anon_sym_default, + ACTIONS(3784), 1, + sym_identifier, + STATE(1619), 1, + sym_for_lifetimes, + STATE(2011), 1, + sym_scoped_type_identifier, + STATE(2020), 1, + sym_generic_type, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + STATE(3776), 1, + sym_function_modifiers, + ACTIONS(3484), 2, + anon_sym_gen, + anon_sym_union, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + STATE(2068), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3626), 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, + [23040] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1420), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2648), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2116), 31, + ACTIONS(2650), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135298,45 +135927,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [22486] = 5, + [23101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2950), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3722), 31, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135354,45 +135983,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [22547] = 5, + [23162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2954), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3726), 31, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135410,29 +136039,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [22608] = 5, + [23223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135440,7 +136077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2614), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135480,31 +136117,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22669] = 5, + [23284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2962), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2614), 31, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135522,207 +136151,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [22730] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3732), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_arguments, - STATE(1416), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3730), 29, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [22795] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_move, - STATE(484), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(1417), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - [22870] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3738), 1, - anon_sym_COLON_COLON, - STATE(1418), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [22933] = 5, + [23345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 7, + ACTIONS(2876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135730,7 +136189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2446), 39, + ACTIONS(2878), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135770,132 +136229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22994] = 12, + [23406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - ACTIONS(3744), 1, - anon_sym_move, - STATE(1779), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(1420), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [23068] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23128] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135911,7 +136253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3750), 30, + ACTIONS(3786), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135942,15 +136284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23188] = 5, + [23466] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135966,7 +136308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3754), 30, + ACTIONS(3790), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135997,15 +136339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23248] = 5, + [23526] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, + ACTIONS(3796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136021,7 +136363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(909), 30, + ACTIONS(3794), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136052,15 +136394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23308] = 5, + [23586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136076,7 +136418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3758), 30, + ACTIONS(3798), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136107,125 +136449,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23368] = 5, + [23646] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3764), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3762), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1601), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3324), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23428] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1427), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3768), 15, - anon_sym_PLUS, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + anon_sym_LPAREN, + ACTIONS(3476), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3480), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3766), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23488] = 5, + ACTIONS(3482), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_for, + ACTIONS(3490), 1, + sym_metavariable, + STATE(2528), 1, + sym_where_predicate, + STATE(2656), 1, + sym_scoped_type_identifier, + STATE(2907), 1, + sym_generic_type, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + STATE(1430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3484), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + STATE(3160), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3478), 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, + [23742] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136241,7 +136546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 30, + ACTIONS(995), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136272,15 +136577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23548] = 5, + [23802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136296,7 +136601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 30, + ACTIONS(3802), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136327,18 +136632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23608] = 6, + [23862] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, + ACTIONS(3808), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1430), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136354,7 +136659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(3806), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136383,15 +136688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [23670] = 5, + [23924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136407,7 +136712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 30, + ACTIONS(3812), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136438,15 +136743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23730] = 5, + [23984] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3820), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136460,17 +136773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(3816), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136491,17 +136801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [23790] = 5, + [24052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136517,7 +136826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 30, + ACTIONS(3828), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136548,21 +136857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23850] = 8, + [24112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1434), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 14, + ACTIONS(3834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136576,14 +136879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 28, + ACTIONS(3832), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136606,15 +136912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23916] = 5, + [24172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136630,7 +136936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 30, + ACTIONS(3836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136661,15 +136967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23976] = 5, + [24232] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + ACTIONS(3840), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136685,13 +136994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1515), 30, + ACTIONS(3806), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -136713,18 +137021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24036] = 5, + [24294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136740,7 +137047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(3806), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136771,21 +137078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24096] = 8, + [24354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1438), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 14, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136799,14 +137100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 28, + ACTIONS(3842), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136829,15 +137133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24162] = 5, + [24414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136853,7 +137157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(3846), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136884,15 +137188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24222] = 5, + [24474] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136908,7 +137212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(3850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136939,15 +137243,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24282] = 5, + [24534] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(3856), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136961,17 +137271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 30, + ACTIONS(3854), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136994,15 +137301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24342] = 5, + [24600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(1421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137018,7 +137325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 30, + ACTIONS(1419), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137049,15 +137356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24402] = 5, + [24660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137073,7 +137380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(3858), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137104,15 +137411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24462] = 5, + [24720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137128,7 +137435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 30, + ACTIONS(3532), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137159,15 +137466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24522] = 5, + [24780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(1535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137183,7 +137490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 30, + ACTIONS(1533), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137214,15 +137521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24582] = 5, + [24840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137238,7 +137545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137269,21 +137576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24642] = 8, + [24900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1447), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137297,14 +137598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3834), 28, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137327,15 +137631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24708] = 5, + [24960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137351,7 +137655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 30, + ACTIONS(1493), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137382,15 +137686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24768] = 5, + [25020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137406,7 +137710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(1501), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137437,15 +137741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24828] = 5, + [25080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137461,7 +137765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 30, + ACTIONS(1505), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137492,15 +137796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24888] = 5, + [25140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(1433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137516,7 +137820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137547,15 +137851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24948] = 5, + [25200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137571,7 +137875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 30, + ACTIONS(3862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137602,15 +137906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25008] = 5, + [25260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137626,7 +137930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 30, + ACTIONS(3866), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137657,15 +137961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25068] = 5, + [25320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137681,7 +137985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 30, + ACTIONS(3870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137712,15 +138016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25128] = 5, + [25380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137736,7 +138040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 30, + ACTIONS(3510), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137767,15 +138071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25188] = 5, + [25440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137791,7 +138095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(3516), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137822,15 +138126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25248] = 5, + [25500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(1531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137846,7 +138150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 30, + ACTIONS(1529), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137877,15 +138181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25308] = 5, + [25560] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137901,7 +138205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 30, + ACTIONS(1441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137932,15 +138236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25368] = 5, + [25620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137956,7 +138260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 30, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137987,15 +138291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25428] = 5, + [25680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138011,7 +138315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138042,15 +138346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25488] = 5, + [25740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138066,7 +138370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138097,15 +138401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25548] = 5, + [25800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138121,7 +138425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(1477), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138152,15 +138456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25608] = 5, + [25860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138176,7 +138480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(1481), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138207,15 +138511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25668] = 5, + [25920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138231,7 +138535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(1423), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138262,15 +138566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25728] = 5, + [25980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138286,7 +138590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(3874), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138317,15 +138621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25788] = 5, + [26040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138341,7 +138645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 30, + ACTIONS(3878), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138372,15 +138676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25848] = 5, + [26100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138396,7 +138700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 30, + ACTIONS(3882), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138427,15 +138731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25908] = 5, + [26160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138451,7 +138755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 30, + ACTIONS(3886), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138482,15 +138786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25968] = 5, + [26220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138506,7 +138810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 30, + ACTIONS(3890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138537,15 +138841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26028] = 5, + [26280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138561,7 +138865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, + ACTIONS(3894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138592,15 +138896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26088] = 5, + [26340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138616,7 +138920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(1039), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138647,15 +138951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26148] = 5, + [26400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138671,7 +138975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(1521), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138702,15 +139006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26208] = 5, + [26460] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138726,7 +139030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 30, + ACTIONS(1453), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138757,15 +139061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26268] = 5, + [26520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138781,7 +139085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 30, + ACTIONS(1461), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138812,15 +139116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26328] = 5, + [26580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138836,7 +139140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(3898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138867,15 +139171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26388] = 5, + [26640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138891,7 +139195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, + ACTIONS(3902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138922,15 +139226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26448] = 5, + [26700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138946,7 +139250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(3906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138977,15 +139281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26508] = 5, + [26760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139001,7 +139305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3528), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139032,15 +139336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26568] = 5, + [26820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139056,7 +139360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 30, + ACTIONS(3910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139087,15 +139391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26628] = 5, + [26880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139111,7 +139415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(3914), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139142,15 +139446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26688] = 5, + [26940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139166,7 +139470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 30, + ACTIONS(3918), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139197,88 +139501,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26748] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [27000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1482), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [26844] = 5, + ACTIONS(3924), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3922), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139294,7 +139580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(987), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139325,15 +139611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26904] = 5, + [27120] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139349,7 +139635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(921), 30, + ACTIONS(1043), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139380,15 +139666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26964] = 5, + [27180] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139404,7 +139690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(1497), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139435,15 +139721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27024] = 5, + [27240] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139459,7 +139745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(1509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139490,15 +139776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27084] = 5, + [27300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139514,7 +139800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3926), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139545,18 +139831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27144] = 6, + [27360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1488), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139572,12 +139855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(1513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139599,17 +139883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27206] = 5, + [27420] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139625,7 +139910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3930), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139656,15 +139941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27266] = 5, + [27480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139680,7 +139965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139711,15 +139996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27326] = 5, + [27540] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139735,7 +140020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 30, + ACTIONS(3712), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139766,15 +140051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27386] = 5, + [27600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139790,7 +140075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 30, + ACTIONS(965), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139821,15 +140106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27446] = 5, + [27660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139845,7 +140130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 30, + ACTIONS(1435), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139876,15 +140161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27506] = 5, + [27720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(1527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139900,7 +140185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 30, + ACTIONS(1525), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139931,74 +140216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27566] = 9, + [27780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1495), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3922), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [27634] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140014,7 +140240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 30, + ACTIONS(3934), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140045,15 +140271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27694] = 5, + [27840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140069,7 +140295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 30, + ACTIONS(3938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140100,15 +140326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27754] = 5, + [27900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140124,7 +140350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 30, + ACTIONS(3942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140155,15 +140381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27814] = 5, + [27960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, + ACTIONS(3948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140179,7 +140405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1473), 30, + ACTIONS(3946), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140210,15 +140436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27874] = 5, + [28020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140234,7 +140460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, + ACTIONS(3950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140265,15 +140491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27934] = 5, + [28080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140289,7 +140515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, + ACTIONS(3954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140320,15 +140546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27994] = 5, + [28140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140344,7 +140570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 30, + ACTIONS(3958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140375,15 +140601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28054] = 5, + [28200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(1447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140399,7 +140625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 30, + ACTIONS(1445), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140430,15 +140656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28114] = 5, + [28260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140454,7 +140680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 30, + ACTIONS(3962), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140485,15 +140711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28174] = 5, + [28320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140509,7 +140735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 30, + ACTIONS(3966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140540,15 +140766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28234] = 5, + [28380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140564,7 +140790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 30, + ACTIONS(3970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140595,15 +140821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28294] = 5, + [28440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140619,7 +140845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, + ACTIONS(1427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140650,19 +140876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28354] = 7, + [28500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - STATE(1508), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140678,12 +140900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -140705,17 +140928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28418] = 5, + [28560] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140731,7 +140955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140762,15 +140986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28478] = 5, + [28620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140786,7 +141010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 30, + ACTIONS(3982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140817,15 +141041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28538] = 5, + [28680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140841,7 +141065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140872,15 +141096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28598] = 5, + [28740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140896,7 +141120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, + ACTIONS(3990), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140927,15 +141151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28658] = 5, + [28800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140951,7 +141175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(913), 30, + ACTIONS(3994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140982,15 +141206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28718] = 5, + [28860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141006,7 +141230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, + ACTIONS(3998), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141037,15 +141261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28778] = 5, + [28920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141061,7 +141285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141092,15 +141316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28838] = 5, + [28980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141116,7 +141340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, + ACTIONS(4002), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141147,15 +141371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28898] = 5, + [29040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141171,7 +141395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 30, + ACTIONS(4006), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141202,15 +141426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28958] = 5, + [29100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141226,7 +141450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, + ACTIONS(4010), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141257,15 +141481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29018] = 5, + [29160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141281,7 +141505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, + ACTIONS(1465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141312,15 +141536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29078] = 5, + [29220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141336,7 +141560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 30, + ACTIONS(4014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141367,15 +141591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29138] = 5, + [29280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141391,7 +141615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3990), 30, + ACTIONS(991), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141422,15 +141646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29198] = 5, + [29340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141446,7 +141670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3994), 30, + ACTIONS(4018), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141477,15 +141701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29258] = 5, + [29400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141501,7 +141725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3998), 30, + ACTIONS(4022), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141532,15 +141756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29318] = 5, + [29460] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + ACTIONS(3428), 1, + anon_sym_BANG, + ACTIONS(3430), 1, + anon_sym_COLON_COLON, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141556,13 +141784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 30, + ACTIONS(3424), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -141584,18 +141811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29378] = 5, + [29524] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(4028), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141609,17 +141841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4002), 30, + ACTIONS(4026), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141642,15 +141871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29438] = 5, + [29590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141666,7 +141895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141697,15 +141926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29498] = 5, + [29650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141721,7 +141950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, + ACTIONS(4030), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141752,15 +141981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29558] = 5, + [29710] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141776,7 +142005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 30, + ACTIONS(4034), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141807,15 +142036,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29618] = 5, + [29770] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4040), 1, + anon_sym_COLON_COLON, + ACTIONS(4042), 1, + anon_sym_move, + STATE(1794), 1, + sym_block, + STATE(3745), 1, + sym_label, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141831,7 +142074,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, + ACTIONS(3424), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [29844] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4046), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4044), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141862,15 +142153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29678] = 5, + [29904] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(4050), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141884,17 +142181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 30, + ACTIONS(4048), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141917,19 +142211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29738] = 7, + [29970] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - STATE(1531), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4054), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141943,16 +142239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(4052), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141972,17 +142266,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29802] = 5, + [30036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141998,7 +142293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(4056), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142029,15 +142324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29862] = 5, + [30096] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(915), 15, + ACTIONS(4062), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142053,7 +142348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(917), 30, + ACTIONS(4060), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142084,15 +142379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29922] = 5, + [30156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, + ACTIONS(4066), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142108,7 +142403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4028), 30, + ACTIONS(4064), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142139,15 +142434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29982] = 5, + [30216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(4034), 15, + ACTIONS(4070), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142163,7 +142458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4032), 30, + ACTIONS(4068), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142194,15 +142489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30042] = 5, + [30276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(4074), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142218,7 +142513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 30, + ACTIONS(4072), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142249,15 +142544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30102] = 5, + [30336] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + ACTIONS(3440), 1, + anon_sym_BANG, + ACTIONS(4076), 1, + anon_sym_COLON_COLON, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142273,13 +142572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4036), 30, + ACTIONS(1475), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142301,24 +142599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30162] = 8, + [30400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1538), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, + ACTIONS(4080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142332,14 +142623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4040), 28, + ACTIONS(4078), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142362,15 +142656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30228] = 5, + [30460] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142386,7 +142680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 30, + ACTIONS(4082), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142417,173 +142711,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30288] = 25, - ACTIONS(29), 1, - anon_sym_LT, + [30520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(1621), 1, - anon_sym_fn, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4044), 1, - sym_identifier, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4050), 1, - anon_sym_for, - STATE(1607), 1, - sym_for_lifetimes, - STATE(2015), 1, - sym_generic_type, - STATE(2235), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3766), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1540), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [30387] = 25, - ACTIONS(29), 1, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1475), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1239), 1, - anon_sym_fn, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3254), 1, - anon_sym_for, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4052), 1, - sym_identifier, - STATE(1634), 1, - sym_for_lifetimes, - STATE(2011), 1, - sym_scoped_type_identifier, - STATE(2015), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3774), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1541), 2, + anon_sym_SLASH_STAR, + STATE(1544), 2, sym_line_comment, sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [30486] = 10, + ACTIONS(4088), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4086), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1542), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(977), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142599,10 +142845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(979), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142622,29 +142872,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [30555] = 11, + anon_sym_else, + [30700] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, + ACTIONS(3428), 1, anon_sym_BANG, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(3422), 1, + ACTIONS(3434), 1, anon_sym_move, - ACTIONS(4054), 1, + ACTIONS(4090), 1, anon_sym_COLON_COLON, - STATE(1454), 1, + STATE(1450), 1, sym_block, - STATE(3677), 1, + STATE(3680), 1, sym_label, - STATE(1543), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142660,7 +142912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3424), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -142684,17 +142936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [30626] = 6, + [30771] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, + ACTIONS(4092), 1, anon_sym_COLON_COLON, - STATE(1544), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142710,7 +142962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(1475), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142739,17 +142991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [30687] = 6, + [30832] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, + ACTIONS(3430), 1, anon_sym_COLON_COLON, - STATE(1545), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142765,7 +143017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(3424), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142794,63 +143046,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [30748] = 25, + [30893] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, + anon_sym_BANG, + ACTIONS(3434), 1, + anon_sym_move, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + STATE(1450), 1, + sym_block, + STATE(3680), 1, + sym_label, + STATE(1549), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3424), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [30962] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3172), 1, - anon_sym_fn, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4062), 1, + ACTIONS(1667), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3578), 1, anon_sym_COLON_COLON, - ACTIONS(4064), 1, - anon_sym_default, - ACTIONS(4066), 1, - anon_sym_for, - ACTIONS(4072), 1, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3638), 1, sym_metavariable, - STATE(1090), 1, - sym_scoped_type_identifier, - STATE(1130), 1, - sym_generic_type, - STATE(1605), 1, - sym_for_lifetimes, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3612), 1, + STATE(2754), 1, sym_scoped_identifier, - STATE(3648), 1, - sym_generic_type_with_turbofish, - STATE(3660), 1, + STATE(2943), 1, + sym__literal_pattern, + STATE(3594), 1, sym_bracketed_type, - STATE(3733), 1, - sym_function_modifiers, - ACTIONS(4068), 2, - anon_sym_gen, - anon_sym_union, - STATE(1483), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1546), 2, + STATE(3611), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4070), 3, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3636), 3, sym_self, sym_super, sym_crate, - ACTIONS(4060), 17, + STATE(2385), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3634), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142868,63 +143169,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30847] = 25, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [31048] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, + anon_sym_CARET, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4102), 1, + anon_sym_PIPE, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3820), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31126] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3214), 1, - anon_sym_fn, - ACTIONS(4074), 1, - sym_identifier, - ACTIONS(4078), 1, + ACTIONS(1667), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3578), 1, anon_sym_COLON_COLON, - ACTIONS(4080), 1, - anon_sym_default, - ACTIONS(4082), 1, - anon_sym_for, - ACTIONS(4088), 1, + ACTIONS(3644), 1, + sym_identifier, + ACTIONS(3650), 1, sym_metavariable, - STATE(1603), 1, - sym_scoped_type_identifier, - STATE(1638), 1, - sym_for_lifetimes, - STATE(1669), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3602), 1, - sym_function_modifiers, - STATE(3639), 1, + STATE(2590), 1, sym_scoped_identifier, - STATE(3658), 1, - sym_generic_type_with_turbofish, - STATE(3664), 1, + STATE(2889), 1, + sym__literal_pattern, + STATE(3594), 1, sym_bracketed_type, - ACTIONS(4084), 2, + STATE(3611), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3648), 3, + sym_self, + sym_super, + sym_crate, + STATE(2385), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3646), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, anon_sym_gen, anon_sym_union, - STATE(1547), 2, + [31212] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1553), 2, sym_line_comment, sym_block_comment, - STATE(1720), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, + ACTIONS(4108), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4106), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, anon_sym_unsafe, - ACTIONS(4086), 3, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(4076), 17, + [31270] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1554), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4112), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4110), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142942,47 +143392,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30946] = 11, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31328] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1548), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4120), 2, anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 25, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142993,65 +143471,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31016] = 17, + [31414] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, anon_sym_EQ, + ACTIONS(4130), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - STATE(1549), 2, + ACTIONS(4132), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 21, + ACTIONS(3930), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143062,62 +143545,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31098] = 18, + [31506] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(395), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - STATE(1550), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 20, + ACTIONS(393), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143132,58 +143612,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31182] = 21, + [31592] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4138), 1, + anon_sym_COLON_COLON, + STATE(1558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4136), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4134), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31652] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4114), 1, + ACTIONS(4130), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 17, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143201,48 +143735,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31272] = 11, + [31742] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1552), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, - anon_sym_PLUS, + ACTIONS(4096), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3820), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3816), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143253,55 +143783,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31342] = 11, + anon_sym_COMMA, + anon_sym_else, + [31810] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1553), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, - anon_sym_PLUS, + ACTIONS(4096), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3820), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3816), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143312,55 +143844,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31412] = 11, + anon_sym_COMMA, + anon_sym_else, + [31884] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1554), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, - anon_sym_PLUS, + ACTIONS(4096), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3820), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3816), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143371,70 +143904,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31482] = 21, + anon_sym_COMMA, + anon_sym_else, + [31956] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4130), 1, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1555), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 17, + ACTIONS(3998), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143445,113 +143984,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31572] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4132), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4130), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31630] = 21, + [32048] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4130), 1, anon_sym_DOT_DOT, - ACTIONS(4136), 1, + ACTIONS(4143), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1557), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 17, + ACTIONS(4141), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143569,49 +144053,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31720] = 15, + [32138] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1558), 2, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(4145), 1, + anon_sym_BANG, + STATE(1490), 1, + sym_field_initializer_list, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(1473), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + ACTIONS(1475), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143630,18 +144109,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31798] = 5, + anon_sym_as, + [32204] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_BANG, + ACTIONS(4151), 1, + anon_sym_COLON_COLON, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1652), 1, + sym_parameters, + STATE(1667), 1, + sym_type_arguments, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4140), 10, + ACTIONS(3438), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3436), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32274] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4155), 1, anon_sym_LPAREN, + STATE(1567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4136), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -143651,7 +144189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4138), 33, + ACTIONS(4134), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143685,66 +144223,302 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31856] = 22, + [32334] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(3418), 1, + anon_sym_BANG, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, + anon_sym_COLON_COLON, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1652), 1, + sym_parameters, + STATE(1667), 1, + sym_type_arguments, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3416), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3412), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4090), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32404] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3418), 1, + anon_sym_BANG, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, + anon_sym_COLON_COLON, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1652), 1, + sym_parameters, + STATE(1667), 1, + sym_type_arguments, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3444), 17, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4100), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3442), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + anon_sym_as, + [32474] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1225), 1, + anon_sym_DASH, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(1285), 1, + sym__raw_string_literal_start, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + ACTIONS(3376), 1, + sym_identifier, + ACTIONS(3386), 1, + sym_metavariable, + STATE(2126), 1, + sym_scoped_identifier, + STATE(2208), 1, + sym__literal_pattern, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, + sym_generic_type_with_turbofish, + ACTIONS(1277), 2, + anon_sym_true, + anon_sym_false, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1273), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3384), 3, + sym_self, + sym_super, + sym_crate, + STATE(2093), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3382), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32560] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1225), 1, + anon_sym_DASH, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(1285), 1, + sym__raw_string_literal_start, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + ACTIONS(3400), 1, + sym_identifier, + ACTIONS(3410), 1, + sym_metavariable, + STATE(2112), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym__literal_pattern, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, + sym_generic_type_with_turbofish, + ACTIONS(1277), 2, + anon_sym_true, + anon_sym_false, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1273), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(2093), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3406), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32646] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, + anon_sym_CARET, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3958), 7, + ACTIONS(3820), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143755,15 +144529,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31948] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1561), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 10, + ACTIONS(4160), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -143774,7 +144556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4146), 33, + ACTIONS(4158), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143808,27 +144590,53 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32006] = 6, + [32780] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LPAREN, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1667), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3574), 1, + sym_identifier, + ACTIONS(3578), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3582), 1, sym_metavariable, - ACTIONS(4150), 33, + STATE(2774), 1, + sym_scoped_identifier, + STATE(2984), 1, + sym__literal_pattern, + STATE(3594), 1, + sym_bracketed_type, + STATE(3611), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + STATE(1574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3580), 3, + sym_self, + sym_super, + sym_crate, + STATE(2385), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3576), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143846,79 +144654,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32066] = 21, + [32866] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, + ACTIONS(3820), 2, anon_sym_EQ, - ACTIONS(4090), 2, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 17, + ACTIONS(3816), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143929,48 +144718,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32156] = 9, + [32948] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4130), 1, + anon_sym_DOT_DOT, + ACTIONS(4164), 1, + anon_sym_EQ, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(4132), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4162), 17, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143981,114 +144789,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32222] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3400), 1, - sym_identifier, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2109), 1, - sym_scoped_identifier, - STATE(2177), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3406), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32308] = 19, + anon_sym_COMMA, + anon_sym_else, + [33038] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1225), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1275), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1285), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, ACTIONS(3388), 1, sym_identifier, ACTIONS(3398), 1, sym_metavariable, - STATE(2116), 1, + STATE(2117), 1, sym_scoped_identifier, - STATE(2163), 1, + STATE(2183), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1277), 2, anon_sym_true, anon_sym_false, - STATE(1566), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1273), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -144096,7 +144832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2093), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -144122,59 +144858,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32394] = 19, + [33124] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4090), 2, + ACTIONS(3820), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1567), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 19, + ACTIONS(3816), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144189,58 +144924,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32480] = 21, + [33208] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4130), 1, anon_sym_DOT_DOT, - ACTIONS(4169), 1, + ACTIONS(4168), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1568), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 17, + ACTIONS(4166), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144258,193 +144993,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [32570] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3620), 1, - sym_identifier, - ACTIONS(3626), 1, - sym_metavariable, - STATE(2811), 1, - sym_scoped_identifier, - STATE(3100), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1569), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3624), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3622), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32656] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - sym_metavariable, - STATE(2686), 1, - sym_scoped_identifier, - STATE(2950), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1570), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3598), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3594), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32742] = 19, + [33298] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1571), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 19, + ACTIONS(3820), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144455,62 +145044,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32828] = 22, + [33368] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4130), 1, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1572), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3878), 7, + ACTIONS(4082), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144518,7 +145111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144529,58 +145122,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32920] = 21, + [33460] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4130), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4172), 1, + anon_sym_EQ, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1573), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(4170), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144598,66 +145191,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33010] = 22, + [33550] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4130), 1, anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(4176), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4022), 7, + ACTIONS(4174), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144668,96 +145258,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33102] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_else, + [33640] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3596), 1, + ACTIONS(3440), 1, + anon_sym_BANG, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(3608), 1, - sym_identifier, - ACTIONS(3614), 1, - sym_metavariable, - STATE(2801), 1, - sym_scoped_identifier, - STATE(3086), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3612), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3610), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [33188] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1576), 2, + STATE(1490), 1, + sym_field_initializer_list, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(1473), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -144766,13 +145288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, - anon_sym_SEMI, + ACTIONS(1475), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144791,116 +145313,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33256] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_SQUOTE, + anon_sym_as, + [33703] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(4149), 1, + anon_sym_BANG, + ACTIONS(4180), 1, + anon_sym_LBRACE, + ACTIONS(4182), 1, anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2136), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1577), 2, + STATE(1790), 1, + sym_field_initializer_list, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3382), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [33342] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(1473), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, - anon_sym_SEMI, + ACTIONS(1475), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144919,48 +145370,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33416] = 12, + anon_sym_as, + [33768] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1579), 2, + ACTIONS(3430), 1, + anon_sym_COLON_COLON, + ACTIONS(3558), 1, + anon_sym_BANG, + ACTIONS(4184), 1, + sym_identifier, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3426), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + anon_sym_as, + ACTIONS(3424), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144979,50 +145426,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33488] = 14, + [33831] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(4186), 1, + anon_sym_COLON_COLON, + STATE(1652), 1, + sym_parameters, + STATE(1667), 1, + sym_type_arguments, + STATE(1587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3448), 17, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4100), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1580), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3446), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [33898] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3466), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, - anon_sym_SEMI, + ACTIONS(3468), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145041,77 +145531,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33564] = 6, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [33954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, - STATE(1581), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3504), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3506), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4150), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33624] = 8, + anon_sym_as, + [34010] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, + ACTIONS(3496), 1, anon_sym_BANG, - ACTIONS(4174), 1, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1582), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145122,15 +145608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(3492), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145142,33 +145630,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33687] = 9, + anon_sym_LT2, + [34070] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, + ACTIONS(3524), 1, anon_sym_BANG, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(4178), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - STATE(1823), 1, - sym_field_initializer_list, - STATE(1583), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3522), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145179,12 +145661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3520), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145199,34 +145683,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33752] = 10, + anon_sym_LT2, + [34130] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, + ACTIONS(4147), 1, anon_sym_LPAREN, - ACTIONS(4124), 1, + ACTIONS(4153), 1, anon_sym_LT2, - ACTIONS(4180), 1, - anon_sym_COLON_COLON, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, + STATE(1653), 1, sym_parameters, - STATE(1584), 2, + STATE(1676), 1, + sym_type_arguments, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3512), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145244,7 +145725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 20, + ACTIONS(3510), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145265,27 +145746,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33819] = 8, + [34194] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - sym_identifier, - STATE(1585), 2, + ACTIONS(3724), 1, + anon_sym_LBRACE, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 16, + ACTIONS(3466), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145295,12 +145773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3412), 23, - anon_sym_SEMI, + ACTIONS(3468), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145320,19 +145796,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33882] = 7, + anon_sym_COLON_COLON, + anon_sym_as, + [34252] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1653), 1, + sym_parameters, + STATE(1676), 1, + sym_type_arguments, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 17, + ACTIONS(3518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145350,8 +145832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3494), 22, - anon_sym_LPAREN, + ACTIONS(3516), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145372,18 +145853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33942] = 6, + [34316] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, + ACTIONS(3722), 1, anon_sym_LBRACE, - STATE(1587), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3496), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145400,7 +145880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 24, + ACTIONS(3498), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145425,17 +145905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34000] = 6, + [34374] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(1588), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3524), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145452,7 +145932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 24, + ACTIONS(3526), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145477,25 +145957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34058] = 7, + [34432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1589), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3524), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145505,11 +145982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, - anon_sym_SEMI, + ACTIONS(3526), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145529,25 +146005,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34118] = 6, + [34488] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1590), 2, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1653), 1, + sym_parameters, + STATE(1676), 1, + sym_type_arguments, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3530), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3528), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34552] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_BANG, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + STATE(1599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145557,10 +146091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 24, + ACTIONS(3424), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145580,21 +146114,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [34612] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4076), 1, anon_sym_COLON_COLON, + ACTIONS(4145), 1, + anon_sym_BANG, + STATE(1600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1475), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - [34176] = 7, + [34672] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3440), 1, anon_sym_BANG, - ACTIONS(3516), 1, + ACTIONS(4188), 1, anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145605,17 +146192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 22, + ACTIONS(1475), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145627,23 +146212,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [34236] = 5, + [34732] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1592), 2, + ACTIONS(3572), 1, + anon_sym_LBRACE, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3504), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145660,10 +146249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 25, + ACTIONS(3506), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145684,17 +146273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34292] = 5, + [34790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1593), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3496), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145711,7 +146299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 25, + ACTIONS(3498), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -145737,19 +146325,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34348] = 7, + [34846] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1653), 1, + sym_parameters, + STATE(1676), 1, + sym_type_arguments, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34910] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(3489), 1, + ACTIONS(3468), 1, anon_sym_COLON_COLON, - STATE(1594), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3464), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145767,7 +146410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 22, + ACTIONS(3462), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145790,19 +146433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [34408] = 7, + [34970] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, + ACTIONS(3504), 1, anon_sym_BANG, - ACTIONS(4054), 1, + ACTIONS(3506), 1, anon_sym_COLON_COLON, - STATE(1595), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3502), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145813,15 +146456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(3500), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145833,47 +146478,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34468] = 7, + anon_sym_LT2, + [35030] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(3482), 1, anon_sym_COLON_COLON, - STATE(1596), 2, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3628), 1, + anon_sym_default, + ACTIONS(4190), 1, + sym_identifier, + ACTIONS(4192), 1, + anon_sym_fn, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(2687), 1, + sym_scoped_type_identifier, + STATE(3483), 1, + sym_generic_type, + STATE(3598), 1, + sym_bracketed_type, + STATE(3617), 1, + sym_function_modifiers, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + ACTIONS(3484), 2, + anon_sym_gen, + anon_sym_union, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3626), 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, + [35119] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3504), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3502), 22, + ACTIONS(3506), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145888,49 +146593,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [34528] = 9, + [35174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1597), 2, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3496), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 20, + ACTIONS(3498), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145944,30 +146643,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [34592] = 9, + [35229] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1598), 2, + ACTIONS(3808), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145978,14 +146675,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 20, + ACTIONS(3806), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145999,22 +146695,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34656] = 5, + [35286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3524), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146031,10 +146729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 25, + ACTIONS(3526), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146055,25 +146753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34712] = 9, + [35341] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1600), 2, + ACTIONS(3840), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146084,14 +146776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 20, + ACTIONS(3806), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146105,26 +146796,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34776] = 7, + [35398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4184), 1, - anon_sym_COLON_COLON, - STATE(1601), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146140,10 +146829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(3718), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146163,26 +146853,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [34836] = 6, + [35453] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1602), 2, + ACTIONS(4149), 1, + anon_sym_BANG, + ACTIONS(4194), 1, + anon_sym_COLON_COLON, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -146192,7 +146883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146215,25 +146906,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34894] = 9, + [35512] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1603), 2, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(3482), 1, + anon_sym_COLON_COLON, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3628), 1, + anon_sym_default, + ACTIONS(4196), 1, + sym_identifier, + ACTIONS(4198), 1, + anon_sym_fn, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(2625), 1, + sym_scoped_type_identifier, + STATE(3483), 1, + sym_generic_type, + STATE(3550), 1, + sym_function_modifiers, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + ACTIONS(3484), 2, + anon_sym_gen, + anon_sym_union, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3626), 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, + [35601] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146244,15 +146993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 20, + ACTIONS(3666), 25, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146265,29 +147014,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [34958] = 5, + [35656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -146297,10 +147048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 25, + ACTIONS(3770), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146321,88 +147073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35014] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4186), 1, - sym_identifier, - ACTIONS(4188), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2632), 1, - sym_scoped_type_identifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1605), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [35103] = 7, + [35711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_SQUOTE, - STATE(1757), 1, - sym_label, - STATE(1606), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146418,9 +147098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(3594), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146441,57 +147122,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [35162] = 22, + [35766] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, + ACTIONS(1265), 1, anon_sym_extern, - ACTIONS(3471), 1, + ACTIONS(3482), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, + ACTIONS(3490), 1, sym_metavariable, - ACTIONS(4048), 1, + ACTIONS(3628), 1, anon_sym_default, - ACTIONS(4192), 1, + ACTIONS(4200), 1, sym_identifier, - ACTIONS(4194), 1, + ACTIONS(4202), 1, anon_sym_fn, - STATE(2278), 1, + STATE(2291), 1, aux_sym_function_modifiers_repeat1, - STATE(2459), 1, + STATE(2467), 1, sym_extern_modifier, - STATE(2698), 1, + STATE(2843), 1, sym_scoped_type_identifier, - STATE(3513), 1, + STATE(3483), 1, sym_generic_type, - STATE(3542), 1, - sym_function_modifiers, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, + STATE(3598), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, sym_generic_type_with_turbofish, - ACTIONS(3473), 2, + STATE(3778), 1, + sym_function_modifiers, + ACTIONS(3484), 2, anon_sym_gen, anon_sym_union, - STATE(1607), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, + ACTIONS(1249), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3477), 3, + ACTIONS(3488), 3, sym_self, sym_super, sym_crate, - ACTIONS(4046), 17, + ACTIONS(3626), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146509,17 +147191,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35251] = 6, + [35855] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(744), 1, + anon_sym_RBRACK, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, + anon_sym_CARET, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4102), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_SEMI, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4210), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_arguments_repeat1, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4124), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35950] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 1, - sym_label, - STATE(1608), 2, + ACTIONS(4212), 1, + anon_sym_else, + STATE(1823), 1, + sym_else_clause, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(1415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146535,10 +147289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 24, + ACTIONS(1413), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146558,19 +147312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35308] = 6, + [36009] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4040), 1, anon_sym_COLON_COLON, - STATE(1609), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146586,10 +147341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(3424), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146609,68 +147364,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35365] = 25, + [36068] = 25, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - STATE(418), 1, + STATE(401), 1, sym_block, - STATE(3532), 1, + STATE(3463), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146681,15 +147435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35460] = 5, + [36163] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + ACTIONS(3840), 1, + anon_sym_COLON_COLON, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146705,11 +147461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 25, + ACTIONS(3806), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146729,40 +147484,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35515] = 5, + [36220] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(889), 1, + anon_sym_RBRACK, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 1, + anon_sym_SEMI, + ACTIONS(4244), 1, + anon_sym_COMMA, + STATE(3052), 1, + aux_sym_arguments_repeat1, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3702), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146773,46 +147556,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35570] = 5, + [36315] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1613), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1027), 1, + anon_sym_RBRACK, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4246), 1, + anon_sym_SEMI, + ACTIONS(4248), 1, + anon_sym_COMMA, + STATE(3080), 1, + aux_sym_arguments_repeat1, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3710), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146823,74 +147626,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35625] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [36410] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - STATE(413), 1, + STATE(1488), 1, sym_block, - STATE(3532), 1, + STATE(3680), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1614), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146901,41 +147696,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35720] = 7, + [36505] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, ACTIONS(4224), 1, - anon_sym_else, - STATE(1807), 1, - sym_else_clause, - STATE(1615), 2, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + STATE(1521), 1, + sym_block, + STATE(3680), 1, + sym_label, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36600] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, + ACTIONS(4220), 1, anon_sym_AMP, + ACTIONS(4222), 1, anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + STATE(409), 1, + sym_block, + STATE(3463), 1, + sym_label, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1393), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1629), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146946,24 +147836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35779] = 6, + [36695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, - STATE(1616), 2, + STATE(1441), 1, + sym_label, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146979,7 +147862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(3780), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -147004,22 +147887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [35836] = 5, + [36752] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(4250), 1, + anon_sym_SQUOTE, + STATE(1744), 1, + sym_label, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -147029,7 +147915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + ACTIONS(3780), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147052,40 +147938,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35891] = 5, + [36811] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + STATE(478), 1, + sym_block, + STATE(3744), 1, + sym_label, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36906] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4220), 1, anon_sym_AMP, + ACTIONS(4222), 1, anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + STATE(482), 1, + sym_block, + STATE(3744), 1, + sym_label, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3500), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147096,74 +148079,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [37001] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + STATE(1829), 1, + sym_block, + STATE(3745), 1, + sym_label, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1634), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35946] = 25, + ACTIONS(4230), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37096] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_SEMI, - ACTIONS(4228), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(3017), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + STATE(1834), 1, + sym_block, + STATE(3745), 1, + sym_label, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1619), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147174,19 +148219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36041] = 7, + [37191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4234), 1, + ACTIONS(4090), 1, anon_sym_COLON_COLON, - STATE(1620), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147202,10 +148245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3424), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147225,16 +148268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [36100] = 5, + [37248] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147250,11 +148296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 25, + ACTIONS(1475), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147274,68 +148319,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36155] = 25, + [37305] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(1265), 1, + anon_sym_extern, + ACTIONS(3482), 1, + anon_sym_COLON_COLON, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3628), 1, + anon_sym_default, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_fn, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(2749), 1, + sym_scoped_type_identifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3483), 1, + sym_generic_type, + STATE(3598), 1, + sym_bracketed_type, + STATE(3668), 1, + sym_scoped_identifier, + STATE(3752), 1, + sym_generic_type_with_turbofish, + ACTIONS(3484), 2, + anon_sym_gen, + anon_sym_union, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1249), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3488), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3626), 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, + [37394] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3466), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1470), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1622), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3468), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147346,19 +148430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36250] = 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [37449] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, + ACTIONS(3808), 1, anon_sym_COLON_COLON, - STATE(1623), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147374,10 +148464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3806), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147397,67 +148487,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [36309] = 25, + [37506] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(949), 1, + anon_sym_RBRACK, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - STATE(1479), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4258), 1, + anon_sym_SEMI, + ACTIONS(4260), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_arguments_repeat1, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1624), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147468,66 +148559,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36404] = 25, + [37601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1433), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4236), 1, - anon_sym_SEMI, - ACTIONS(4238), 1, - anon_sym_COMMA, - STATE(3117), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1431), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147538,66 +148600,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36499] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [37655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4262), 1, + anon_sym_COLON_COLON, + STATE(1643), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3512), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(483), 1, - sym_block, - STATE(3740), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1626), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3510), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147608,66 +148651,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36594] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37711] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(482), 1, - sym_block, - STATE(3740), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1627), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(3820), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147678,66 +148707,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36689] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [37779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1813), 1, - sym_block, - STATE(3741), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3686), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147748,66 +148755,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36784] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [37833] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1818), 1, - sym_block, - STATE(3741), 1, - sym_label, - ACTIONS(4196), 2, + anon_sym_AMP, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1629), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(3820), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147818,17 +148814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36879] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [37905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1630), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147844,10 +148845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(3774), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147867,19 +148868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - [36936] = 6, + [37959] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, + ACTIONS(4262), 1, anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147895,10 +148896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(3516), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147918,24 +148919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36993] = 5, + [38015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1632), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -147945,7 +148944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 24, + ACTIONS(3598), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147968,20 +148967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [37048] = 6, + [38069] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, + ACTIONS(4264), 1, anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147997,7 +148995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148021,89 +149019,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37105] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [38125] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4242), 1, - sym_identifier, - ACTIONS(4244), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2843), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3776), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1634), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(3820), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [37194] = 5, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3816), 17, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38203] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4266), 1, + anon_sym_DASH_GT, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3672), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3670), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [38259] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1635), 2, + ACTIONS(4268), 1, + anon_sym_DASH_GT, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -148113,7 +149156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 24, + ACTIONS(3676), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148136,20 +149179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37249] = 6, + [38315] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, + ACTIONS(4270), 1, anon_sym_COLON_COLON, - STATE(1636), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148165,7 +149206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148189,66 +149230,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37306] = 25, + [38371] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4176), 1, + anon_sym_EQ, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4246), 1, - anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4274), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4174), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148259,133 +149294,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37401] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4250), 1, - sym_identifier, - ACTIONS(4252), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2725), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3613), 1, - sym_function_modifiers, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1638), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [37490] = 25, + anon_sym_SQUOTE, + [38457] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4254), 1, - anon_sym_SEMI, - ACTIONS(4256), 1, - anon_sym_COMMA, - STATE(3154), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1639), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(3820), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148396,17 +149347,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37585] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_COLON_COLON, - STATE(1640), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148422,7 +149378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(1419), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148446,37 +149402,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37641] = 5, + anon_sym_else, + [38585] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(935), 1, + anon_sym_RPAREN, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4276), 1, + anon_sym_COMMA, + STATE(2866), 1, + aux_sym_arguments_repeat1, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3706), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148487,23 +149471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [37695] = 5, + [38677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148519,7 +149495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 24, + ACTIONS(1423), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148542,17 +149518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37749] = 5, + anon_sym_else, + [38731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148568,7 +149544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 24, + ACTIONS(1435), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148591,17 +149567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37803] = 5, + anon_sym_else, + [38785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1644), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148617,7 +149593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3682), 24, + ACTIONS(1427), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148640,21 +149616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [37857] = 7, + anon_sym_else, + [38839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(1833), 1, - sym_arguments, - STATE(1645), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148670,7 +149642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 22, + ACTIONS(3752), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148692,16 +149665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [37915] = 5, + [38893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1646), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148717,7 +149691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 24, + ACTIONS(3760), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148742,54 +149716,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37969] = 19, + [38947] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, + ACTIONS(4120), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - STATE(1647), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 15, + ACTIONS(4114), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -148805,60 +149779,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38051] = 21, + [39029] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4278), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 13, + ACTIONS(4126), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39117] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3642), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3640), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148869,59 +149886,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38137] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [39171] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3654), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3652), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [39225] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(395), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 13, + ACTIONS(393), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -148934,59 +150003,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38223] = 21, + [39307] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4274), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1650), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 13, + ACTIONS(341), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -149000,15 +150071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [38309] = 5, + [39393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + ACTIONS(4280), 1, + anon_sym_DASH_GT, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149024,7 +150097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 24, + ACTIONS(3764), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149047,38 +150120,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38363] = 5, + [39449] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4168), 1, + anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4272), 1, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4274), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4166), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [39535] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, + ACTIONS(4220), 1, anon_sym_AMP, + ACTIONS(4222), 1, anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(3820), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3582), 24, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3816), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -149090,47 +150245,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [38417] = 6, + anon_sym_SQUOTE, + [39615] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, + ACTIONS(4220), 1, anon_sym_AMP, + ACTIONS(4222), 1, anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4272), 1, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(4274), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1673), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3930), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149141,71 +150314,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38473] = 24, + [39703] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4266), 1, + ACTIONS(4282), 1, anon_sym_RPAREN, - ACTIONS(4268), 1, + ACTIONS(4284), 1, anon_sym_COMMA, - STATE(2888), 1, + STATE(2989), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1654), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149216,64 +150382,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38565] = 24, + [39795] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, + ACTIONS(1011), 1, anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 1, + ACTIONS(4286), 1, anon_sym_COMMA, - STATE(2896), 1, + STATE(3057), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1655), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149284,79 +150450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38657] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4276), 1, - anon_sym_RBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_COMMA, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3023), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [38737] = 6, + [39887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1657), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149372,7 +150474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3656), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149395,65 +150497,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [38793] = 24, + [39941] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, + ACTIONS(1033), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - STATE(2929), 1, + STATE(3033), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149464,37 +150567,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38885] = 5, + [40033] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(4290), 1, + sym_identifier, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4294), 1, + anon_sym_RBRACE, + ACTIONS(4296), 1, + anon_sym_STAR, + ACTIONS(4300), 1, + anon_sym_COMMA, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 1, + sym_metavariable, + STATE(2513), 1, + sym_scoped_identifier, + STATE(3092), 1, + sym__use_clause, + STATE(3505), 1, + sym_bracketed_type, + STATE(3759), 1, + sym_generic_type_with_turbofish, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4304), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4298), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [40113] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3632), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4308), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149505,30 +150695,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [38939] = 6, + [40201] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1660), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3820), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149537,13 +150726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(3816), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149562,16 +150748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38995] = 5, + anon_sym_SQUOTE, + [40265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149582,12 +150768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 24, + ACTIONS(3492), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149602,27 +150790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [39049] = 6, + anon_sym_LT2, + [40319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4296), 1, - anon_sym_DASH_GT, - STATE(1662), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3728), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149638,7 +150822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 23, + ACTIONS(3726), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149661,123 +150845,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [39105] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1663), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39177] = 24, + [40373] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(901), 1, + anon_sym_RBRACK, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4298), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2979), 1, + STATE(2913), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1664), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149788,60 +150915,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39269] = 21, + [40465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4312), 1, + anon_sym_DASH_GT, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3736), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1665), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4167), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3734), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149852,18 +150958,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39355] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1666), 2, + ACTIONS(4314), 1, + anon_sym_DASH_GT, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149879,7 +150991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(3740), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149903,52 +151015,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39411] = 17, + [40577] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, anon_sym_EQ, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - STATE(1667), 2, + ACTIONS(4274), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3998), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 17, + ACTIONS(4230), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40665] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4316), 1, + anon_sym_DASH_GT, + STATE(1687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3746), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149961,46 +151124,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39489] = 12, + anon_sym_as, + [40721] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1668), 2, + ACTIONS(4318), 1, + anon_sym_DASH_GT, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3662), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3660), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150019,18 +151180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39557] = 6, + anon_sym_as, + [40777] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1669), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150046,7 +151205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3730), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150069,31 +151228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [39613] = 11, + [40831] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1670), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(3820), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150103,7 +151263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3816), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -150125,17 +151285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39679] = 6, + [40897] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 1, - anon_sym_DASH_GT, - STATE(1671), 2, + ACTIONS(4262), 1, + anon_sym_COLON_COLON, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(3530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150151,7 +151311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 23, + ACTIONS(3528), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150175,62 +151335,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39735] = 22, + [40953] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4274), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1672), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 3, + ACTIONS(4082), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150241,17 +151401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39823] = 6, + [41041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4302), 1, - anon_sym_DASH_GT, - STATE(1673), 2, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150267,7 +151427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 23, + ACTIONS(3532), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150291,64 +151451,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39879] = 24, + [41097] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4172), 1, + anon_sym_EQ, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4274), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4170), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150359,62 +151515,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39971] = 22, + anon_sym_SQUOTE, + [41183] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4322), 1, + anon_sym_RPAREN, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_arguments_repeat1, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150425,17 +151584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40059] = 6, + [41275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, + ACTIONS(4326), 1, anon_sym_COLON_COLON, - STATE(1676), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150451,7 +151610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3532), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150475,62 +151634,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40115] = 22, + [41331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4262), 1, + anon_sym_COLON_COLON, + STATE(1697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3532), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1677), 2, + anon_sym_as, + [41387] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4040), 1, + anon_sym_COLON_COLON, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3426), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4308), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3424), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150541,62 +151727,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40203] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41443] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4164), 1, + anon_sym_EQ, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4274), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4310), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4162), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150607,17 +151798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40291] = 6, + anon_sym_SQUOTE, + [41529] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1679), 2, + ACTIONS(4328), 1, + anon_sym_LPAREN, + STATE(1799), 1, + sym_arguments, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150633,8 +151827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, - anon_sym_LPAREN, + ACTIONS(3712), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -150657,60 +151850,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40347] = 21, + [41587] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1680), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4108), 13, + ACTIONS(3820), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3816), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150721,65 +151900,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40433] = 24, + [41657] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4143), 1, + anon_sym_EQ, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4272), 1, anon_sym_DOT_DOT, - ACTIONS(4312), 1, - anon_sym_RPAREN, - ACTIONS(4314), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4274), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1681), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4141), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150790,29 +151971,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40525] = 10, + anon_sym_SQUOTE, + [41743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3948), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3946), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - STATE(1682), 2, + [41796] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4084), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150821,10 +152042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(4082), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150843,16 +152067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40589] = 5, + anon_sym_as, + [41849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150868,7 +152092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 24, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150892,61 +152116,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40643] = 21, + [41902] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4330), 1, + anon_sym_LBRACE, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4350), 1, + anon_sym_EQ, + ACTIONS(4356), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + STATE(399), 1, + sym_match_block, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4358), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4348), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150957,38 +152182,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [40729] = 5, + [41991] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1437), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(291), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1435), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150999,23 +152248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [40783] = 5, + [42080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151031,7 +152272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151055,47 +152296,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40837] = 15, + [42133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1687), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3804), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3802), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151114,63 +152343,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40911] = 22, + anon_sym_as, + [42186] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1205), 1, + anon_sym_RPAREN, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151181,17 +152410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40999] = 6, + [42275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, - STATE(1689), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151207,7 +152434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3832), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151231,15 +152458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41055] = 5, + [42328] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151255,7 +152482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 24, + ACTIONS(3712), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151279,16 +152506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41109] = 5, + [42381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151304,7 +152530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 24, + ACTIONS(3812), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151328,16 +152554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41163] = 5, + [42434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151348,14 +152573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 22, + ACTIONS(4006), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151370,52 +152593,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [41217] = 13, + [42487] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1693), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3820), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3816), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151434,16 +152654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41287] = 5, + [42548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151459,7 +152678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 24, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151482,19 +152701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [41341] = 6, + [42601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4318), 1, - anon_sym_DASH_GT, - STATE(1695), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151510,7 +152726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 23, + ACTIONS(4034), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151534,39 +152750,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41397] = 6, + [42654] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4320), 1, - anon_sym_DASH_GT, - STATE(1696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3662), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3660), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4372), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151577,24 +152815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41453] = 6, + [42741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 1, - anon_sym_DASH_GT, - STATE(1697), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151610,7 +152839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 23, + ACTIONS(3858), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151634,17 +152863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41509] = 6, + [42794] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4324), 1, - anon_sym_DASH_GT, - STATE(1698), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(4050), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151658,13 +152891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 23, + ACTIONS(4048), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151684,117 +152914,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41565] = 19, + [42853] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1699), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4054), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4163), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41647] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 16, + anon_sym_DOT_DOT, + ACTIONS(4052), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -151806,84 +152958,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41727] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4326), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1701), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41816] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1702), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151899,7 +152989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 23, + ACTIONS(3532), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151923,15 +153013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41869] = 5, + [42965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151947,7 +153037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 23, + ACTIONS(3828), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151971,15 +153061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41922] = 5, + [43018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151995,7 +153085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3798), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152019,61 +153109,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41975] = 22, + [43071] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(3998), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4330), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1705), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4348), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152084,109 +153174,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42062] = 5, + [43158] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3884), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3882), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42115] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_AMP_AMP, - ACTIONS(4196), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1707), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152197,61 +153240,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42202] = 22, + [43247] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1708), 2, + ACTIONS(4378), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152262,15 +153305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42289] = 5, + [43334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152286,7 +153329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(3836), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152310,133 +153353,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42342] = 5, + [43387] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1710), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4038), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4036), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4116), 1, anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42395] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1711), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4382), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42448] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1712), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, - anon_sym_PLUS, + ACTIONS(4096), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3902), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152447,22 +153419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42501] = 5, + [43476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152478,7 +153443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 23, + ACTIONS(3806), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152502,15 +153467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42554] = 5, + [43529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152526,7 +153491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 23, + ACTIONS(3862), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152550,15 +153515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42607] = 5, + [43582] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152574,7 +153539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 23, + ACTIONS(3846), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152598,15 +153563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42660] = 5, + [43635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152622,7 +153587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3866), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152646,15 +153611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42713] = 5, + [43688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152670,7 +153635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(3374), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152694,15 +153659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42766] = 5, + [43741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152718,7 +153683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3750), 23, + ACTIONS(3850), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152742,7 +153707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42819] = 8, + [43794] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -152753,29 +153718,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4368), 1, anon_sym_DOT, - STATE(1719), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3792), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4390), 1, anon_sym_CARET, + ACTIONS(4392), 1, anon_sym_AMP, + ACTIONS(4394), 1, anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_AMP_AMP, + ACTIONS(4398), 1, + anon_sym_PIPE_PIPE, + ACTIONS(395), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3788), 21, + STATE(1736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4388), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(393), 14, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152786,22 +153767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42878] = 5, + [43875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152817,7 +153793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3510), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152841,15 +153817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42931] = 5, + [43928] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3856), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152863,13 +153845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 23, + ACTIONS(3854), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152889,21 +153868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42984] = 8, + [43987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1722), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(3518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152917,10 +153890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3834), 21, + ACTIONS(3516), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152940,60 +153916,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43043] = 21, + [44040] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1723), 2, + ACTIONS(4406), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153004,61 +153981,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43128] = 22, + [44127] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4164), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1724), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4162), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153069,11 +154045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43215] = 9, + [44212] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_EQ, ACTIONS(4364), 1, anon_sym_LBRACK, ACTIONS(4366), 1, @@ -153082,29 +154060,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - STATE(1725), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3922), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4390), 1, anon_sym_CARET, + ACTIONS(4392), 1, anon_sym_AMP, + ACTIONS(4394), 1, anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_AMP_AMP, + ACTIONS(4398), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4408), 1, + anon_sym_DOT_DOT, + ACTIONS(4386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4388), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153115,67 +154109,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [43276] = 22, + [44297] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4082), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1726), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4348), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44384] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3844), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3842), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153186,27 +154215,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43363] = 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44437] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - STATE(1727), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, + ACTIONS(3820), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -153218,7 +154254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153239,42 +154275,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43426] = 13, + [44500] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1728), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, + ACTIONS(3820), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153295,33 +154331,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43495] = 12, + [44569] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1729), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3820), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153329,7 +154365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153350,43 +154386,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43562] = 14, + [44636] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1730), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3820), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153407,50 +154443,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43633] = 17, + [44707] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(3820), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - STATE(1731), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, + ACTIONS(3816), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153467,52 +154503,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43710] = 18, + [44784] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(3820), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - STATE(1732), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, + ACTIONS(3816), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PIPE_PIPE, @@ -153528,30 +154564,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43789] = 11, + [44863] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1733), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(3820), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153561,7 +154597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153582,58 +154618,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43854] = 21, + [44928] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4112), 1, + ACTIONS(4172), 1, anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1734), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, + ACTIONS(4170), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153646,58 +154682,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43939] = 21, + [45013] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4136), 1, + ACTIONS(4176), 1, anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1735), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, + ACTIONS(4174), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153710,44 +154746,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44024] = 15, + [45098] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1736), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + ACTIONS(3820), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153768,54 +154804,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44097] = 19, + [45171] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4120), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - STATE(1737), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, + ACTIONS(4114), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153830,62 +154866,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44178] = 23, + [45252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_SEMI, - ACTIONS(4376), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1738), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3874), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153896,62 +154907,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44267] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3880), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4378), 1, - anon_sym_RBRACE, - ACTIONS(4380), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3878), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1739), 2, + anon_sym_as, + [45358] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3892), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3890), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153962,15 +155003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44356] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153986,7 +155034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 23, + ACTIONS(3930), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154010,15 +155058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44409] = 5, + [45464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154034,7 +155082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 23, + ACTIONS(3894), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154058,11 +155106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44462] = 19, + [45517] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4143), 1, + anon_sym_EQ, ACTIONS(4364), 1, anon_sym_LBRACK, ACTIONS(4366), 1, @@ -154071,41 +155121,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - STATE(1742), 2, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 14, + ACTIONS(4141), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -154118,17 +155170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44543] = 5, + [45602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154144,7 +155194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3754), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154168,62 +155218,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44596] = 23, + [45655] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4402), 1, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4412), 3, anon_sym_LBRACE, - ACTIONS(4404), 1, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45740] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4336), 1, + anon_sym_CARET, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_AMP_AMP, + ACTIONS(4344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4350), 1, + anon_sym_EQ, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - STATE(420), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(3930), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1744), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4348), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154234,15 +155347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44685] = 5, + [45827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154258,7 +155371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3762), 23, + ACTIONS(3898), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154282,15 +155395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44738] = 5, + [45880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1746), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154306,7 +155419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 23, + ACTIONS(3906), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154330,15 +155443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44791] = 5, + [45933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154354,7 +155467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 23, + ACTIONS(3528), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154378,173 +155491,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44844] = 22, + [45986] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44931] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3846), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44984] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4414), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1750), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, + anon_sym_SQUOTE, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154555,15 +155555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45069] = 5, + [46071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154579,7 +155579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 23, + ACTIONS(3966), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154603,15 +155603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45122] = 5, + [46124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154627,7 +155627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 23, + ACTIONS(3910), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154651,15 +155651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45175] = 5, + [46177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154675,7 +155675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(3914), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154699,15 +155699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45228] = 5, + [46230] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1754), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154723,7 +155723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(3918), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154747,15 +155747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45281] = 5, + [46283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154771,7 +155771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 23, + ACTIONS(3986), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154795,15 +155795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45334] = 5, + [46336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154819,7 +155819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 23, + ACTIONS(3990), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154843,15 +155843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45387] = 5, + [46389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154867,7 +155867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 23, + ACTIONS(3994), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154891,15 +155891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45440] = 5, + [46442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154915,7 +155915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(3922), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154939,61 +155939,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45493] = 22, + [46495] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4168), 1, + anon_sym_EQ, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4412), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1759), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4166), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155004,15 +156003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45580] = 5, + [46580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155028,7 +156027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(3934), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155052,15 +156051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45633] = 5, + [46633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155076,7 +156075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 23, + ACTIONS(3938), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155100,15 +156099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45686] = 5, + [46686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155124,7 +156123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 23, + ACTIONS(4002), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155148,85 +156147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45739] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4414), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45824] = 8, + [46739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1764), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 14, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155240,10 +156169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 21, + ACTIONS(3942), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -155263,15 +156195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45883] = 5, + [46792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155287,7 +156219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 23, + ACTIONS(3950), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155311,15 +156243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45936] = 5, + [46845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155335,7 +156267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 23, + ACTIONS(3954), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155359,15 +156291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45989] = 5, + [46898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155383,7 +156315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155407,15 +156339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46042] = 5, + [46951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155431,7 +156363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 23, + ACTIONS(4010), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155455,15 +156387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46095] = 5, + [47004] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155479,7 +156411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 23, + ACTIONS(4014), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155503,15 +156435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46148] = 5, + [47057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155527,7 +156459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 23, + ACTIONS(3974), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155551,15 +156483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46201] = 5, + [47110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155575,7 +156507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 23, + ACTIONS(3978), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155599,81 +156531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46254] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1772), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46343] = 5, + [47163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155689,7 +156555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 23, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155713,15 +156579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46396] = 5, + [47216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155737,7 +156603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 23, + ACTIONS(3926), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155761,15 +156627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46449] = 5, + [47269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155785,7 +156651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 23, + ACTIONS(3786), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155809,76 +156675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46502] = 21, + [47322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, ACTIONS(1585), 15, @@ -155921,111 +156723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46640] = 5, + [47375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1497), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1495), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46693] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1779), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1505), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1503), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46746] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(1535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156041,7 +156747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 23, + ACTIONS(1533), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156065,15 +156771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46799] = 5, + [47428] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156089,7 +156795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156113,15 +156819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46852] = 5, + [47481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156137,7 +156843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(1493), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156161,60 +156867,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46905] = 21, + [47534] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4418), 1, + anon_sym_else, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156225,61 +156933,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46990] = 22, + [47623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1503), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1501), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + anon_sym_as, + [47676] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(1507), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1505), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47729] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3964), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3962), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156290,62 +157070,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47077] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47782] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4418), 1, - anon_sym_SEMI, - ACTIONS(4420), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(3998), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1785), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156356,15 +157142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47166] = 5, + [47869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156380,7 +157166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 23, + ACTIONS(3870), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156404,15 +157190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47219] = 5, + [47922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156428,7 +157214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(1529), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156452,12 +157238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47272] = 21, + [47975] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, + ACTIONS(4164), 1, anon_sym_EQ, ACTIONS(4364), 1, anon_sym_LBRACK, @@ -156467,43 +157253,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, + ACTIONS(4162), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -156516,15 +157302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47357] = 5, + [48060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156540,7 +157326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 23, + ACTIONS(1449), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156564,15 +157350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47410] = 5, + [48113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156588,7 +157374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3758), 23, + ACTIONS(3970), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156612,15 +157398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47463] = 5, + [48166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156636,7 +157422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156660,61 +157446,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47516] = 22, + [48219] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(3878), 2, + ACTIONS(4082), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1792), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156725,15 +157511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47603] = 5, + [48306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1793), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156749,7 +157535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 23, + ACTIONS(1477), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156773,7 +157559,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47656] = 10, + [48359] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, + anon_sym_CARET, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4102), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4124), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48448] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156786,14 +157638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - STATE(1794), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, + ACTIONS(3820), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -156805,7 +157657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156826,7 +157678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47719] = 13, + [48511] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156839,29 +157691,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1795), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, + ACTIONS(3820), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156882,7 +157734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47788] = 12, + [48580] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156895,20 +157747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1796), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3820), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156916,7 +157768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156937,7 +157789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47855] = 14, + [48647] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156950,30 +157802,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1797), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3820), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156994,7 +157846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47926] = 17, + [48718] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157007,37 +157859,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(3820), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - STATE(1798), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, + ACTIONS(3816), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157054,7 +157906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48003] = 18, + [48795] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157067,39 +157919,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(3820), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - STATE(1799), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, + ACTIONS(3816), 15, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE_PIPE, @@ -157115,7 +157967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48082] = 11, + [48874] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157128,17 +157980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1800), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(3820), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -157148,7 +158000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3816), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157169,12 +158021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48147] = 21, + [48939] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4112), 1, + ACTIONS(4172), 1, anon_sym_EQ, ACTIONS(4364), 1, anon_sym_LBRACK, @@ -157184,43 +158036,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, + ACTIONS(4170), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157233,12 +158085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48232] = 21, + [49024] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, + ACTIONS(4176), 1, anon_sym_EQ, ACTIONS(4364), 1, anon_sym_LBRACK, @@ -157248,43 +158100,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, + ACTIONS(4174), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157297,48 +158149,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48317] = 15, + [49109] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4382), 2, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4420), 1, + anon_sym_RBRACE, + ACTIONS(4422), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1803), 2, + ACTIONS(4124), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157349,13 +158215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48390] = 19, + [49198] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157368,134 +158228,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4120), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - STATE(1804), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4163), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48471] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1805), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, - anon_sym_PLUS, + ACTIONS(4388), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4006), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48524] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1806), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 23, + ACTIONS(4114), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157506,22 +158275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48577] = 5, + [49279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157537,7 +158301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 23, + ACTIONS(3882), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157561,15 +158325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48630] = 5, + [49332] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157585,7 +158349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1515), 23, + ACTIONS(3886), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157609,80 +158373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48683] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1809), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48770] = 5, + [49385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(1523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157698,7 +158397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 23, + ACTIONS(1521), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157722,15 +158421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48823] = 5, + [49438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1811), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157746,7 +158445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(1453), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157770,181 +158469,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48876] = 5, + [49491] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3956), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3954), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4116), 1, anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48929] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1525), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48982] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(4096), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1485), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49035] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1815), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1443), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1441), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157955,22 +158534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49088] = 5, + [49578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157986,7 +158558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1473), 23, + ACTIONS(1461), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158010,15 +158582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49141] = 5, + [49631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1817), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158034,7 +158606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 23, + ACTIONS(3902), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158058,15 +158630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49194] = 5, + [49684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158082,7 +158654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 23, + ACTIONS(4030), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158106,15 +158678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49247] = 5, + [49737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158130,7 +158702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 23, + ACTIONS(1497), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158154,15 +158726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49300] = 5, + [49790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1820), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158178,7 +158750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(909), 23, + ACTIONS(1509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158202,15 +158774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49353] = 5, + [49843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158226,7 +158798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 23, + ACTIONS(1513), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158250,15 +158822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49406] = 5, + [49896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, + ACTIONS(1527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158274,7 +158846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(913), 23, + ACTIONS(1525), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158298,15 +158870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49459] = 5, + [49949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(1447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158322,7 +158894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 23, + ACTIONS(1445), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158346,80 +158918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49512] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(4022), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1824), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49599] = 5, + [50002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(915), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158435,7 +158942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(917), 23, + ACTIONS(1465), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158459,15 +158966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49652] = 5, + [50055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158483,7 +158990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(965), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158507,127 +159014,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49705] = 23, + [50108] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4426), 1, - anon_sym_RPAREN, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(977), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49794] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(979), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158638,15 +159055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49881] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1829), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158662,7 +159086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(921), 23, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158686,15 +159110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49934] = 5, + [50214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158710,7 +159134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 23, + ACTIONS(987), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158734,7 +159158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49987] = 22, + [50267] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -158747,48 +159171,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4396), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4426), 1, anon_sym_EQ, - ACTIONS(3958), 2, + ACTIONS(3998), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4424), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158799,15 +159223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50074] = 5, + [50354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158823,7 +159247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 23, + ACTIONS(991), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158847,15 +159271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50127] = 5, + [50407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158871,7 +159295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3998), 23, + ACTIONS(1441), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158895,37 +159319,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50180] = 5, + [50460] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1834), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4004), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4390), 1, anon_sym_CARET, + ACTIONS(4392), 1, anon_sym_AMP, + ACTIONS(4394), 1, anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_AMP_AMP, + ACTIONS(4398), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4408), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 1, + anon_sym_EQ, + ACTIONS(4082), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4002), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4388), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4424), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158936,22 +159384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50233] = 5, + [50547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158967,7 +159408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 23, + ACTIONS(995), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158991,15 +159432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50286] = 5, + [50600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159015,7 +159456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 23, + ACTIONS(1481), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159039,37 +159480,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50339] = 5, + [50653] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1837), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4024), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4390), 1, anon_sym_CARET, + ACTIONS(4392), 1, anon_sym_AMP, + ACTIONS(4394), 1, anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_AMP_AMP, + ACTIONS(4398), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4408), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 1, + anon_sym_EQ, + ACTIONS(3930), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4022), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4388), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4424), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159080,22 +159545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50392] = 5, + [50740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(1037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159111,7 +159569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 23, + ACTIONS(1039), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159135,15 +159593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50445] = 5, + [50793] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159159,7 +159617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 23, + ACTIONS(1043), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159183,15 +159641,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50498] = 5, + [50846] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, + anon_sym_CARET, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4102), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4428), 1, + anon_sym_SEMI, + ACTIONS(4430), 1, + anon_sym_else, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4124), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50935] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159207,7 +159731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3998), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159231,15 +159755,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50551] = 5, + [50988] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, + anon_sym_CARET, + ACTIONS(4100), 1, + anon_sym_AMP, + ACTIONS(4102), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4124), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4432), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51075] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159255,7 +159844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4028), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159279,15 +159868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50604] = 5, + [51128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4034), 15, + ACTIONS(3796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159303,7 +159892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4032), 23, + ACTIONS(3794), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159327,62 +159916,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50657] = 23, + [51181] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4430), 1, + ACTIONS(4434), 1, anon_sym_RPAREN, - ACTIONS(4432), 1, + ACTIONS(4436), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159393,110 +159982,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50746] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1844), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3812), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3810), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50799] = 23, + [51270] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(297), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159507,15 +160048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50888] = 5, + [51359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159531,7 +160072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 23, + ACTIONS(4018), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159555,15 +160096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50941] = 5, + [51412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1847), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159579,7 +160120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 23, + ACTIONS(4044), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159603,127 +160144,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50994] = 22, + [51465] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4434), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1848), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51081] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4356), 1, anon_sym_DOT_DOT, - ACTIONS(4436), 1, + ACTIONS(4438), 1, anon_sym_LBRACE, - STATE(1493), 1, + STATE(1464), 1, sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4358), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4348), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159734,21 +160210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51170] = 8, + [51554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1850), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159762,10 +160232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4040), 21, + ACTIONS(4022), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -159785,61 +160258,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51229] = 22, + [51607] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1347), 1, + anon_sym_RPAREN, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4438), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1851), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159850,62 +160324,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51316] = 23, + [51696] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4290), 1, + sym_identifier, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + anon_sym_STAR, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 1, + sym_metavariable, + ACTIONS(4440), 1, + anon_sym_RBRACE, + STATE(2513), 1, + sym_scoped_identifier, + STATE(3424), 1, + sym__use_clause, + STATE(3505), 1, + sym_bracketed_type, + STATE(3759), 1, + sym_generic_type_with_turbofish, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4304), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4298), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [51773] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(337), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159916,62 +160450,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51405] = 23, + [51862] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + ACTIONS(4442), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159982,121 +160515,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51494] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [51949] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - ACTIONS(4440), 1, - anon_sym_RBRACE, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1854), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [51571] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4442), 2, + ACTIONS(4444), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1855), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160107,15 +160580,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51658] = 5, + [52036] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1856), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(4028), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160129,13 +160608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 23, + ACTIONS(4026), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -160155,62 +160631,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51711] = 23, + [52095] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1315), 1, + anon_sym_RPAREN, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4444), 1, - anon_sym_SEMI, - ACTIONS(4446), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160221,15 +160697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51800] = 5, + [52184] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160245,7 +160721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4056), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160269,62 +160745,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51853] = 23, + [52237] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4446), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4448), 1, + anon_sym_else, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160335,62 +160811,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51942] = 23, + [52326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1053), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4062), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1860), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4060), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160401,62 +160852,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52031] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52379] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4448), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4450), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160467,62 +160925,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52120] = 23, + [52468] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1317), 1, + anon_sym_RPAREN, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4452), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160533,62 +160991,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52209] = 23, + [52557] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4454), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4456), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4450), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160599,62 +161057,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52298] = 23, + [52646] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - ACTIONS(4458), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4454), 1, + anon_sym_else, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160665,62 +161123,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52387] = 23, + [52735] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4462), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4456), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160731,62 +161189,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52476] = 23, + [52824] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4458), 1, + anon_sym_RPAREN, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160797,62 +161255,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52565] = 23, + [52913] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1061), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4460), 1, + anon_sym_SEMI, + ACTIONS(4462), 1, + anon_sym_else, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160863,56 +161321,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52654] = 19, + [53002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1876), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1868), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4064), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53055] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4070), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 14, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4068), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160923,62 +161410,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52735] = 21, + anon_sym_as, + [53108] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4464), 1, + anon_sym_SEMI, + ACTIONS(4466), 1, + anon_sym_else, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160989,62 +161483,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52820] = 23, + [53197] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4464), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4468), 1, + anon_sym_RPAREN, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161055,60 +161549,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52909] = 21, + [53286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1871), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4072), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161119,60 +161590,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52994] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53339] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161183,62 +161663,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53079] = 23, + [53428] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(395), 2, anon_sym_EQ, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(393), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161249,62 +161723,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53168] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53509] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161315,62 +161789,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53257] = 23, + [53594] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4356), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(4090), 2, + ACTIONS(4470), 1, + anon_sym_LBRACE, + STATE(485), 1, + sym_match_block, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4358), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4348), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161381,122 +161855,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53346] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [53683] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - ACTIONS(4468), 1, - anon_sym_RBRACE, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [53423] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4143), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4141), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161507,62 +161919,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53512] = 23, + [53768] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4168), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4374), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4470), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4376), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4166), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161573,62 +161983,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53601] = 23, + [53853] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, + ACTIONS(305), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161639,62 +162049,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53690] = 23, + [53942] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4472), 1, - anon_sym_LBRACE, - STATE(1791), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161705,103 +162115,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53779] = 23, + [54031] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4472), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53868] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1882), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3976), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3974), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161812,69 +162181,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53921] = 23, + [54120] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161885,62 +162247,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54010] = 23, + [54209] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4336), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4342), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4344), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4356), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4474), 1, + anon_sym_LBRACE, + STATE(1806), 1, + sym_match_block, + ACTIONS(4332), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4358), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4334), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4352), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4348), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161951,103 +162313,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54099] = 23, + [54298] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54188] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1886), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3844), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3842), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162058,69 +162379,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54241] = 23, + [54387] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, + ACTIONS(315), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162131,62 +162445,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54330] = 23, + [54476] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4476), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162197,62 +162511,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54419] = 23, + [54565] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(319), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162263,62 +162577,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54508] = 23, + [54654] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4476), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162329,62 +162643,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54597] = 23, + [54743] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(323), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1891), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162395,62 +162709,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54686] = 23, + [54832] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4478), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162461,62 +162775,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54775] = 23, + [54921] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, + ACTIONS(327), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162527,62 +162841,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54864] = 23, + [55010] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4478), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162593,62 +162907,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54953] = 23, + [55099] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, + ACTIONS(331), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162659,62 +162973,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55042] = 23, + [55188] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4480), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162725,62 +163039,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55131] = 23, + [55277] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + ACTIONS(335), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162791,62 +163105,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55220] = 23, + [55366] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - ACTIONS(4480), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162857,61 +163171,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55309] = 22, + [55455] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(4482), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1899), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162922,61 +163236,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55396] = 22, + [55542] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4484), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1900), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162987,61 +163302,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55483] = 22, + [55631] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4484), 1, + anon_sym_RBRACE, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4486), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1901), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163052,15 +163368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55570] = 5, + [55720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1902), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(4080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163076,7 +163392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(4078), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163100,85 +163416,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55623] = 5, + [55773] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, + ACTIONS(4290), 1, + sym_identifier, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + anon_sym_STAR, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 1, + sym_metavariable, + ACTIONS(4486), 1, + anon_sym_RBRACE, + STATE(2513), 1, + sym_scoped_identifier, + STATE(3424), 1, + sym__use_clause, + STATE(3505), 1, + sym_bracketed_type, + STATE(3759), 1, + sym_generic_type_with_turbofish, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4304), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4298), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [55850] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4488), 1, + anon_sym_SEMI, + ACTIONS(4490), 1, + anon_sym_else, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3990), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55676] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1904), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, - anon_sym_PLUS, + ACTIONS(4096), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3994), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163189,44 +163542,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55729] = 5, + [55939] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1905), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3876), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4492), 1, + anon_sym_RBRACE, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3874), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1911), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163237,22 +163608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55782] = 5, + [56028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1906), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(4088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163268,7 +163632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 23, + ACTIONS(4086), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163292,60 +163656,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55835] = 21, + [56081] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1907), 2, + ACTIONS(4496), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4488), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163356,63 +163721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55920] = 5, + [56168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4016), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4014), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55973] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1909), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163428,7 +163745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 23, + ACTIONS(3790), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163452,62 +163769,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56026] = 23, + [56221] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4500), 1, + anon_sym_else, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163518,37 +163835,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56115] = 5, + [56310] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3880), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3818), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_QMARK, + ACTIONS(3824), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_as, + ACTIONS(4098), 1, anon_sym_CARET, + ACTIONS(4100), 1, anon_sym_AMP, + ACTIONS(4102), 1, anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3878), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4502), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4096), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163559,69 +163900,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56168] = 23, + [56397] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4490), 1, - anon_sym_SEMI, - ACTIONS(4492), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + ACTIONS(4504), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163632,35 +163965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56257] = 5, + [56484] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4390), 1, anon_sym_CARET, + ACTIONS(4392), 1, anon_sym_AMP, + ACTIONS(4394), 1, anon_sym_PIPE, + ACTIONS(4386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4388), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3820), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3816), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -163679,63 +164023,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56310] = 23, + [56557] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, - anon_sym_RBRACE, - ACTIONS(4496), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4506), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163746,103 +164087,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56399] = 23, + [56643] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4508), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56488] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1916), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3900), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3898), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163853,67 +164151,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56541] = 22, + [56729] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4502), 1, + ACTIONS(4510), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163924,60 +164215,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56627] = 22, + [56815] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4504), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4512), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1918), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163988,118 +164279,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56713] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [56901] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3760), 1, - sym__use_clause, - STATE(1919), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [56787] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4506), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1920), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164110,60 +164343,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56873] = 22, + [56987] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4508), 1, + ACTIONS(4514), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1921), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164174,60 +164407,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56959] = 22, + [57073] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4510), 1, + ACTIONS(4516), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1922), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164238,59 +164471,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57045] = 21, + [57159] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4518), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4414), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164301,60 +164535,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57129] = 22, + [57245] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164365,60 +164599,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57215] = 22, + [57331] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4518), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4522), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164429,60 +164663,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57301] = 22, + [57417] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4520), 1, + ACTIONS(4524), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164493,60 +164727,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57387] = 22, + [57503] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4364), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4382), 2, + ACTIONS(4526), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4514), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164557,60 +164791,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57473] = 22, + [57589] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4524), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4362), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164621,60 +164855,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57559] = 22, + [57675] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4528), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164685,118 +164919,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57645] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [57761] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3482), 1, - sym__use_clause, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1930), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [57719] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4426), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4530), 1, anon_sym_DOT_DOT, - ACTIONS(4526), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4414), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4532), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4424), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164807,60 +164982,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57805] = 22, + [57845] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4528), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4534), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164871,60 +165046,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57891] = 22, + [57931] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4530), 1, + ACTIONS(4536), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1933), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164935,59 +165110,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57977] = 21, + [58017] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4116), 1, + anon_sym_AMP_AMP, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4538), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4488), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164998,60 +165174,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58061] = 22, + [58103] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, + ACTIONS(4540), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165062,44 +165238,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58147] = 16, + [58189] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4290), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4292), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4296), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4306), 1, sym_metavariable, - STATE(2502), 1, + STATE(2513), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3505), 1, sym_bracketed_type, - STATE(3584), 1, + STATE(3742), 1, sym__use_clause, - STATE(3618), 1, + STATE(3759), 1, sym_generic_type_with_turbofish, - STATE(1936), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4304), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(3086), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4298), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165120,60 +165296,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58221] = 22, + [58263] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4534), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4542), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165184,60 +165360,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58307] = 22, + [58349] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4426), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4530), 1, anon_sym_DOT_DOT, - ACTIONS(4536), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4412), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4532), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4424), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165248,124 +165423,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58393] = 22, + [58433] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4538), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + ACTIONS(4290), 1, + sym_identifier, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + anon_sym_STAR, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 1, + sym_metavariable, + STATE(2513), 1, + sym_scoped_identifier, + STATE(3505), 1, + sym_bracketed_type, + STATE(3558), 1, + sym__use_clause, + STATE(3759), 1, + sym_generic_type_with_turbofish, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58479] = 22, + ACTIONS(4304), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4298), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58507] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4544), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165376,60 +165545,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58565] = 22, + [58593] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4542), 1, + ACTIONS(4546), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165440,60 +165609,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58651] = 22, + [58679] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4544), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4548), 1, + anon_sym_SEMI, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1942), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165504,60 +165673,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58737] = 22, + [58765] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4378), 1, + anon_sym_EQ_GT, + ACTIONS(4390), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4392), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4394), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4398), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4426), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4530), 1, anon_sym_DOT_DOT, - ACTIONS(4546), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4550), 1, + anon_sym_AMP_AMP, + ACTIONS(4386), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4400), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4404), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4532), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4388), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4424), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165568,60 +165737,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58823] = 22, + [58851] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4548), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4552), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165632,60 +165801,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58909] = 22, + [58937] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4290), 1, + sym_identifier, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + anon_sym_STAR, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 1, + sym_metavariable, + STATE(2513), 1, + sym_scoped_identifier, + STATE(3505), 1, + sym_bracketed_type, + STATE(3630), 1, + sym__use_clause, + STATE(3759), 1, + sym_generic_type_with_turbofish, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4304), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4298), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59011] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4554), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1945), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165696,60 +165923,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58995] = 22, + [59097] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4290), 1, + sym_identifier, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + anon_sym_STAR, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 1, + sym_metavariable, + STATE(2513), 1, + sym_scoped_identifier, + STATE(3505), 1, + sym_bracketed_type, + STATE(3599), 1, + sym__use_clause, + STATE(3759), 1, + sym_generic_type_with_turbofish, + STATE(1949), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4304), 3, + sym_self, + sym_super, + sym_crate, + STATE(3086), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4298), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59171] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4550), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4556), 1, + anon_sym_COMMA, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165760,60 +166045,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59081] = 22, + [59257] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, + ACTIONS(4558), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165824,60 +166109,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59167] = 22, + [59343] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4554), 1, + ACTIONS(4560), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165888,44 +166173,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59253] = 16, + [59429] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4290), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4292), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4296), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4306), 1, sym_metavariable, - STATE(2502), 1, + STATE(2513), 1, sym_scoped_identifier, - STATE(3365), 1, + STATE(3424), 1, sym__use_clause, - STATE(3461), 1, + STATE(3505), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3759), 1, sym_generic_type_with_turbofish, - STATE(1949), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4304), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(3086), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4298), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165946,124 +166231,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59327] = 22, + [59503] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4556), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1950), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [59413] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(4562), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166074,60 +166295,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59499] = 22, + [59589] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3822), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3824), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3826), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4098), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4100), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4102), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4116), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4564), 1, + anon_sym_RBRACK, + ACTIONS(4094), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4104), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4124), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4096), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4126), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166138,105 +166359,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59585] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3722), 1, - sym__use_clause, - STATE(1953), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59659] = 17, + [59675] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4562), 1, - sym_identifier, ACTIONS(4566), 1, + sym_identifier, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - STATE(3144), 1, + STATE(3126), 1, sym_scoped_type_identifier, - STATE(3422), 1, + STATE(3431), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1954), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166254,47 +166417,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59734] = 17, + [59750] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4574), 1, + ACTIONS(4578), 1, sym_identifier, - STATE(3151), 1, + STATE(3101), 1, sym_scoped_type_identifier, - STATE(3438), 1, + STATE(3200), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1955), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166312,47 +166475,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59809] = 17, + [59825] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, ACTIONS(4576), 1, + sym_metavariable, + ACTIONS(4580), 1, sym_identifier, - STATE(3045), 1, + STATE(2865), 1, sym_scoped_type_identifier, - STATE(3264), 1, + STATE(3221), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1956), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166370,47 +166533,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59884] = 17, + [59900] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4578), 1, + ACTIONS(4582), 1, sym_identifier, - STATE(3013), 1, + STATE(3135), 1, sym_scoped_type_identifier, - STATE(3172), 1, + STATE(3436), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1957), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166428,47 +166591,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59959] = 17, + [59975] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4580), 1, + ACTIONS(4584), 1, sym_identifier, - STATE(3147), 1, + STATE(2928), 1, sym_scoped_type_identifier, - STATE(3430), 1, + STATE(3341), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1958), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166486,47 +166649,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60034] = 17, + [60050] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4582), 1, + ACTIONS(4586), 1, sym_identifier, - STATE(2947), 1, + STATE(2995), 1, sym_scoped_type_identifier, - STATE(3185), 1, + STATE(3336), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1959), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166544,47 +166707,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60109] = 17, + [60125] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4584), 1, + ACTIONS(4588), 1, sym_identifier, - STATE(2867), 1, + STATE(3112), 1, sym_scoped_type_identifier, - STATE(3389), 1, + STATE(3425), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1960), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166602,47 +166765,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60184] = 17, + [60200] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3860), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4586), 1, + ACTIONS(4590), 1, sym_identifier, - STATE(3148), 1, + STATE(3124), 1, sym_scoped_type_identifier, - STATE(3432), 1, + STATE(3429), 1, sym_generic_type, - STATE(3477), 1, + STATE(3479), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3608), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3634), 1, sym_bracketed_type, - STATE(1961), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3858), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4572), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166660,19 +166823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60259] = 5, + [60275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1962), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4590), 3, + ACTIONS(4594), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4588), 29, + ACTIONS(4592), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166702,19 +166865,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60306] = 5, + [60322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4594), 3, + ACTIONS(4598), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4592), 29, + ACTIONS(4596), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166744,19 +166907,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60353] = 5, + [60369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4598), 3, + ACTIONS(4602), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4596), 29, + ACTIONS(4600), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166786,35 +166949,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60400] = 13, + [60416] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3554), 1, - sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3763), 1, + sym_attribute, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1965), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166835,35 +166998,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60462] = 13, + [60478] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3560), 1, + STATE(3638), 1, sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1966), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166884,35 +167047,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60524] = 13, + [60540] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3695), 1, - sym_bracketed_type, - STATE(3709), 1, + STATE(3474), 1, sym_attribute, - STATE(3765), 1, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1967), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166933,35 +167096,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60586] = 13, + [60602] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3619), 1, - sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3732), 1, + sym_attribute, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1968), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166982,35 +167145,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60648] = 13, + [60664] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3468), 1, + STATE(3512), 1, sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1969), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167031,35 +167194,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60710] = 13, + [60726] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3492), 1, + STATE(3624), 1, sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1970), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167080,35 +167243,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60772] = 13, + [60788] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3512), 1, + STATE(3507), 1, sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1971), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167129,35 +167292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60834] = 13, + [60850] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3558), 1, + STATE(3546), 1, sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1972), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167178,35 +167341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60896] = 13, + [60912] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2538), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4604), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4610), 1, sym_metavariable, - STATE(2348), 1, + STATE(2337), 1, sym_scoped_identifier, - STATE(3647), 1, + STATE(3587), 1, sym_attribute, - STATE(3695), 1, + STATE(3696), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3770), 1, sym_generic_type_with_turbofish, - STATE(1973), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4608), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4606), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167227,33 +167390,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60958] = 12, + [60974] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4608), 1, - sym_identifier, ACTIONS(4612), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(4616), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 1, sym_metavariable, - STATE(3364), 1, + STATE(3247), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3505), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3759), 1, sym_generic_type_with_turbofish, - STATE(1974), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4614), 3, + ACTIONS(4618), 3, sym_self, sym_super, sym_crate, - ACTIONS(4610), 20, + ACTIONS(4614), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167274,33 +167437,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61017] = 12, + [61033] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, + ACTIONS(4616), 1, anon_sym_COLON_COLON, - ACTIONS(4618), 1, + ACTIONS(4622), 1, sym_identifier, - ACTIONS(4624), 1, + ACTIONS(4628), 1, sym_metavariable, - STATE(3189), 1, + STATE(3352), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3505), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3759), 1, sym_generic_type_with_turbofish, - STATE(1975), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4622), 3, + ACTIONS(4626), 3, sym_self, sym_super, sym_crate, - ACTIONS(4620), 20, + ACTIONS(4624), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167321,17 +167484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61076] = 5, + [61092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT, - STATE(1976), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 20, + ACTIONS(995), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167352,17 +167515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61112] = 5, + [61128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, + ACTIONS(985), 1, anon_sym_DOT_DOT, - STATE(1977), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 20, + ACTIONS(987), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167383,20 +167546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61148] = 6, + [61164] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3485), 1, + ACTIONS(3502), 1, anon_sym_COLON, - ACTIONS(3489), 2, + ACTIONS(3506), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1978), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 17, + ACTIONS(3500), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167414,20 +167577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61185] = 6, + [61201] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, + ACTIONS(3494), 1, anon_sym_COLON, - ACTIONS(3508), 2, + ACTIONS(3498), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1979), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 17, + ACTIONS(3492), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167445,20 +167608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61222] = 6, + [61238] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, + ACTIONS(3464), 1, anon_sym_COLON, - ACTIONS(3516), 2, + ACTIONS(3468), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1980), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 17, + ACTIONS(3462), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167476,20 +167639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61259] = 6, + [61275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(3522), 1, anon_sym_COLON, - ACTIONS(3500), 2, + ACTIONS(3526), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1981), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 17, + ACTIONS(3520), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167507,36 +167670,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61296] = 14, + [61312] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_LPAREN, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(4636), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4640), 1, anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(4646), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1982), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, + ACTIONS(4630), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167546,28 +167709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [61349] = 10, + [61365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1983), 2, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 13, + ACTIONS(3718), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -167577,20 +167731,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [61393] = 5, + anon_sym_in, + [61399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3680), 1, + ACTIONS(3668), 1, anon_sym_COLON, - STATE(1984), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 18, + ACTIONS(3666), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167609,17 +167767,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61427] = 5, + [61433] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, + ACTIONS(3504), 2, anon_sym_COLON, - STATE(1985), 2, + anon_sym_DOT_DOT, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 18, + ACTIONS(3500), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3506), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [61469] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3772), 1, + anon_sym_COLON, + STATE(1988), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3770), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167638,19 +167826,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61461] = 5, + [61503] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3694), 1, - anon_sym_COLON, - STATE(1986), 2, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 18, + ACTIONS(3442), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -167660,29 +167857,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_in, - [61495] = 6, + [61547] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, + ACTIONS(3466), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1987), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, + ACTIONS(3462), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3500), 14, + ACTIONS(3468), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167697,22 +167890,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61531] = 6, + [61583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1988), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, + ACTIONS(3492), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3516), 14, + ACTIONS(3498), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167727,52 +167920,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61567] = 6, + [61619] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1989), 2, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3508), 14, + ACTIONS(3412), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61603] = 6, + [61663] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3524), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1990), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, + ACTIONS(3520), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3489), 14, + ACTIONS(3526), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167787,27 +167984,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61639] = 10, + [61699] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, - STATE(1991), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 13, + ACTIONS(3436), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167821,17 +168018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61683] = 5, + [61743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3704), 1, + ACTIONS(3596), 1, anon_sym_COLON, - STATE(1992), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 18, + ACTIONS(3594), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167850,89 +168047,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61717] = 10, + [61777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1993), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 13, + ACTIONS(3492), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [61761] = 14, - ACTIONS(37), 1, - anon_sym_SQUOTE, + anon_sym_LT2, + [61808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - sym_identifier, - STATE(3732), 1, - sym_label, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1994), 2, + ACTIONS(3466), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(1629), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(2886), 3, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - STATE(3177), 3, - sym_block, - sym__literal, - sym_negative_literal, - [61812] = 5, + ACTIONS(3468), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [61841] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3524), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1995), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 16, + ACTIONS(3526), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167949,18 +168130,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61845] = 5, + [61874] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(1225), 1, + anon_sym_DASH, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(1285), 1, + sym__raw_string_literal_start, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(4654), 1, + sym_identifier, + STATE(3736), 1, + sym_label, + ACTIONS(1277), 2, + anon_sym_true, + anon_sym_false, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1629), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(3110), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3323), 3, + sym_block, + sym__literal, + sym_negative_literal, + [61925] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3504), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1996), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 16, + ACTIONS(3506), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167977,18 +168195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61878] = 5, + [61958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 16, + ACTIONS(3498), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168005,52 +168223,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61911] = 4, + [61991] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 18, + ACTIONS(3446), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [61942] = 9, + [62032] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2008), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2078), 1, sym_parameters, - STATE(1999), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 13, + ACTIONS(3510), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168064,58 +168285,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61983] = 5, + [62070] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2000), 2, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 16, + ACTIONS(3528), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62016] = 11, + [62108] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4668), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2006), 1, sym_type_arguments, - ACTIONS(4662), 2, + ACTIONS(4666), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2001), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(4658), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168125,58 +168348,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62060] = 19, + [62152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_const, - ACTIONS(4670), 1, - anon_sym_enum, - ACTIONS(4672), 1, - anon_sym_fn, - ACTIONS(4674), 1, - anon_sym_mod, - ACTIONS(4676), 1, - anon_sym_static, - ACTIONS(4678), 1, - anon_sym_struct, - ACTIONS(4680), 1, - anon_sym_trait, - ACTIONS(4682), 1, - anon_sym_type, - ACTIONS(4684), 1, - anon_sym_union, - ACTIONS(4686), 1, - anon_sym_unsafe, - ACTIONS(4688), 1, - anon_sym_use, - ACTIONS(4690), 1, - anon_sym_extern, - STATE(2250), 1, - sym_extern_modifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(3485), 1, - sym_function_modifiers, - ACTIONS(4666), 2, - anon_sym_async, - anon_sym_default, - STATE(2002), 2, + ACTIONS(3642), 1, + anon_sym_COLON, + STATE(2006), 2, sym_line_comment, sym_block_comment, - [62120] = 5, + ACTIONS(3640), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [62184] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3618), 1, - anon_sym_COLON, - STATE(2003), 2, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 16, + ACTIONS(3532), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168187,131 +168402,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [62152] = 12, + [62222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(3658), 1, anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2004), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(3656), 16, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62198] = 19, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [62254] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, + ACTIONS(4672), 1, anon_sym_const, - ACTIONS(4696), 1, + ACTIONS(4674), 1, anon_sym_enum, - ACTIONS(4698), 1, + ACTIONS(4676), 1, anon_sym_fn, - ACTIONS(4700), 1, + ACTIONS(4678), 1, anon_sym_mod, - ACTIONS(4702), 1, + ACTIONS(4680), 1, anon_sym_static, - ACTIONS(4704), 1, + ACTIONS(4682), 1, anon_sym_struct, - ACTIONS(4706), 1, + ACTIONS(4684), 1, anon_sym_trait, - ACTIONS(4708), 1, + ACTIONS(4686), 1, anon_sym_type, - ACTIONS(4710), 1, + ACTIONS(4688), 1, anon_sym_union, - ACTIONS(4712), 1, + ACTIONS(4690), 1, anon_sym_unsafe, - ACTIONS(4714), 1, + ACTIONS(4692), 1, anon_sym_use, - ACTIONS(4716), 1, + ACTIONS(4694), 1, anon_sym_extern, - STATE(2261), 1, + STATE(2263), 1, sym_extern_modifier, - STATE(2278), 1, + STATE(2291), 1, aux_sym_function_modifiers_repeat1, - STATE(3754), 1, + STATE(3757), 1, sym_function_modifiers, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_async, anon_sym_default, - STATE(2005), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - [62258] = 5, + [62314] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4660), 1, anon_sym_COLON, - STATE(2006), 2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4696), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 16, - anon_sym_SEMI, + ACTIONS(4658), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [62290] = 8, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62360] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, STATE(2008), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2078), 1, sym_parameters, - STATE(2007), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 13, + ACTIONS(3516), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168325,17 +168537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62328] = 5, + [62398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3654), 1, anon_sym_COLON, - STATE(2008), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 16, + ACTIONS(3652), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168352,83 +168564,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62360] = 8, + [62430] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2009), 2, + ACTIONS(4698), 1, + anon_sym_const, + ACTIONS(4700), 1, + anon_sym_enum, + ACTIONS(4702), 1, + anon_sym_fn, + ACTIONS(4704), 1, + anon_sym_mod, + ACTIONS(4706), 1, + anon_sym_static, + ACTIONS(4708), 1, + anon_sym_struct, + ACTIONS(4710), 1, + anon_sym_trait, + ACTIONS(4712), 1, + anon_sym_type, + ACTIONS(4714), 1, + anon_sym_union, + ACTIONS(4716), 1, + anon_sym_unsafe, + ACTIONS(4718), 1, + anon_sym_use, + ACTIONS(4720), 1, + anon_sym_extern, + STATE(2249), 1, + sym_extern_modifier, + STATE(2291), 1, + aux_sym_function_modifiers_repeat1, + STATE(3567), 1, + sym_function_modifiers, + ACTIONS(4670), 2, + anon_sym_async, + anon_sym_default, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 13, + [62490] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2014), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3774), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [62398] = 8, + [62519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2010), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 13, + ACTIONS(1441), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [62436] = 8, + anon_sym_in, + [62548] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2011), 2, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 13, + ACTIONS(3532), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168440,44 +168679,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [62474] = 4, + [62581] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + ACTIONS(4632), 1, + anon_sym_LPAREN, + ACTIONS(4636), 1, + anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(4724), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3696), 16, + ACTIONS(4630), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62503] = 5, + anon_sym_in, + [62622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4718), 1, + ACTIONS(4726), 1, anon_sym_LPAREN, - STATE(2013), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4150), 15, + ACTIONS(4134), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -168493,57 +168739,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62534] = 17, + [62653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3436), 1, - anon_sym_PLUS, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4630), 1, + STATE(2019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1043), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(4632), 1, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4720), 1, - anon_sym_LPAREN, - ACTIONS(4725), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4722), 2, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - STATE(2014), 2, - sym_line_comment, - sym_block_comment, - [62589] = 6, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [62682] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, + ACTIONS(3518), 1, anon_sym_COLON, - ACTIONS(4727), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - STATE(2015), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(3516), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168558,15 +168791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62622] = 4, + [62715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3706), 16, + ACTIONS(3598), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168583,58 +168816,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62651] = 16, + [62744] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, ACTIONS(4630), 1, + anon_sym_PIPE, + ACTIONS(4634), 1, anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(4636), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4640), 1, anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4729), 1, + ACTIONS(4728), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4730), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, ACTIONS(3436), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [62704] = 4, + [62797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 16, + ACTIONS(3532), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -168644,20 +168880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62733] = 6, + [62830] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3528), 1, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(4727), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - STATE(2019), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 14, + ACTIONS(3528), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168672,15 +168907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62766] = 4, + [62863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 16, + ACTIONS(3726), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168692,24 +168927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62795] = 6, + [62892] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, + ACTIONS(3534), 1, anon_sym_COLON, - ACTIONS(4733), 1, + ACTIONS(4734), 1, anon_sym_COLON_COLON, - STATE(2021), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3532), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168724,15 +168959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62828] = 4, + [62925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 16, + ACTIONS(1481), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168749,15 +168984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62857] = 4, + [62954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2023), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3714), 16, + ACTIONS(1039), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168769,24 +169004,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62886] = 6, + anon_sym_in, + [62983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(4727), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - STATE(2024), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3510), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168801,15 +169036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62919] = 4, + [63016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 16, + ACTIONS(3730), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168826,136 +169061,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62948] = 6, + [63045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2026), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 14, + ACTIONS(3686), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62981] = 4, + [63074] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3656), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3436), 1, anon_sym_PLUS, + ACTIONS(4630), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4634), 1, + anon_sym_LBRACE, + ACTIONS(4636), 1, + anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4640), 1, + anon_sym_AT, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4736), 1, + anon_sym_LPAREN, + ACTIONS(4741), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4738), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63010] = 11, + STATE(2032), 2, + sym_line_comment, + sym_block_comment, + [63129] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_DOT_DOT, - ACTIONS(4735), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2006), 1, sym_type_arguments, - ACTIONS(4662), 2, + ACTIONS(4666), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2028), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4658), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63053] = 16, + [63172] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_LBRACE, ACTIONS(4634), 1, + anon_sym_LBRACE, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4640), 1, anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4722), 1, + ACTIONS(4738), 1, anon_sym_RBRACK, - ACTIONS(4737), 1, + ACTIONS(4745), 1, anon_sym_LPAREN, - ACTIONS(4739), 1, + ACTIONS(4747), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, ACTIONS(3436), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4630), 2, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2029), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - [63106] = 4, + [63225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 16, + ACTIONS(3870), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168971,25 +169217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63135] = 6, + [63253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - STATE(2031), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3874), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -168999,46 +169241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63168] = 10, + [63281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2032), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63209] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3946), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169054,15 +169265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63237] = 4, + [63309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(3950), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169078,15 +169289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63265] = 4, + [63337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3954), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169102,39 +169313,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63293] = 4, + [63365] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4749), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63321] = 4, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3958), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169150,15 +169369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63349] = 4, + [63437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3532), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169174,15 +169393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63377] = 4, + [63465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4138), 15, + ACTIONS(4106), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169198,15 +169417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63405] = 4, + [63493] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(4130), 15, + ACTIONS(4110), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169222,40 +169441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63433] = 5, + [63521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - STATE(2041), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 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, - [63463] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2042), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(3890), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169271,15 +169465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63491] = 4, + [63549] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4146), 15, + ACTIONS(4158), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169295,39 +169489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63519] = 4, + [63577] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3934), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63547] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3862), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169343,15 +169513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63575] = 4, + [63605] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3906), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169367,15 +169537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63603] = 4, + [63633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3866), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169391,15 +169561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63631] = 4, + [63661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 15, + ACTIONS(3528), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169415,71 +169585,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63659] = 12, + [63689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, + ACTIONS(4092), 1, anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2049), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63703] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2050), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3886), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63731] = 4, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4136), 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, + [63719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3978), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169495,15 +169634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63759] = 4, + [63747] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3878), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169519,15 +169658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63787] = 4, + [63775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, + ACTIONS(3910), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169543,15 +169682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63815] = 4, + [63803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3914), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169567,32 +169706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63843] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(2055), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 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, - [63873] = 4, + [63831] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169600,7 +169714,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 15, + ACTIONS(3858), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169616,7 +169730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63901] = 4, + [63859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169624,7 +169738,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(4030), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169640,7 +169754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63929] = 4, + [63887] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169648,7 +169762,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3918), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169664,7 +169778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63957] = 4, + [63915] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169672,7 +169786,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3922), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169688,7 +169802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63985] = 4, + [63943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169696,7 +169810,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 15, + ACTIONS(3902), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169712,7 +169826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64013] = 4, + [63971] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169720,7 +169834,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(3894), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169736,7 +169850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64041] = 4, + [63999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169744,7 +169858,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3510), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169760,7 +169874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64069] = 4, + [64027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169768,7 +169882,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3854), 15, + ACTIONS(3934), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169784,7 +169898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64097] = 4, + [64055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169792,7 +169906,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 15, + ACTIONS(3938), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169808,15 +169922,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64125] = 4, + [64083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(4136), 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, + [64113] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2066), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3974), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169832,15 +169971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64153] = 4, + [64141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3982), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169856,15 +169995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64181] = 4, + [64169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3516), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169880,15 +170019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64209] = 4, + [64197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3882), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169904,15 +170043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64237] = 4, + [64225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3898), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169928,15 +170067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64265] = 4, + [64253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(3886), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169952,67 +170091,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64293] = 5, + [64281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4749), 1, - anon_sym_DASH_GT, - STATE(2071), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 13, + ACTIONS(3942), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [64322] = 5, + [64309] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4664), 1, anon_sym_DOT_DOT, - STATE(2072), 2, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 13, + ACTIONS(4658), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64351] = 6, + [64344] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4753), 1, + ACTIONS(4755), 1, anon_sym_pat, - STATE(146), 1, + STATE(176), 1, sym_fragment_specifier, - STATE(2073), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(4751), 12, + ACTIONS(4753), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -170025,17 +170167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [64382] = 5, + [64375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, + ACTIONS(4759), 1, anon_sym_DOT_DOT, - STATE(2074), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 13, + ACTIONS(4757), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170049,41 +170191,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64411] = 5, + [64404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_DOT_DOT, - STATE(2075), 2, + ACTIONS(4761), 1, + anon_sym_DASH_GT, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 13, + ACTIONS(3660), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [64440] = 5, + [64433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, + ACTIONS(4763), 1, anon_sym_DASH_GT, - STATE(2076), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 13, + ACTIONS(3670), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170097,17 +170239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64469] = 5, + [64462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, + ACTIONS(4765), 1, anon_sym_DASH_GT, - STATE(2077), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 13, + ACTIONS(3676), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170121,44 +170263,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64498] = 8, + [64491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4664), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2078), 2, + ACTIONS(4767), 1, + anon_sym_DASH_GT, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(3734), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [64533] = 5, + [64520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, + ACTIONS(4769), 1, anon_sym_DASH_GT, - STATE(2079), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 13, + ACTIONS(3740), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170172,17 +170311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64562] = 5, + [64549] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4765), 1, + ACTIONS(4771), 1, anon_sym_DASH_GT, - STATE(2080), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 13, + ACTIONS(3746), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170196,41 +170335,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64591] = 5, + [64578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_DASH_GT, - STATE(2081), 2, + ACTIONS(977), 1, + anon_sym_DOT_DOT, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 13, + ACTIONS(979), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, anon_sym_else, - [64620] = 5, + anon_sym_in, + [64607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + ACTIONS(989), 1, + anon_sym_DOT_DOT, + STATE(2083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(991), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64636] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4773), 1, anon_sym_DASH_GT, - STATE(2082), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 13, + ACTIONS(3764), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170244,348 +170407,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64649] = 7, + [64665] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, + ACTIONS(3496), 1, anon_sym_DOT_DOT, - STATE(2083), 2, + ACTIONS(4775), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, + ACTIONS(3492), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4771), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3500), 5, + ACTIONS(3498), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [64681] = 14, + [64697] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(4776), 1, - anon_sym_EQ, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(3436), 2, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(3524), 1, + anon_sym_DOT_DOT, ACTIONS(4778), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2084), 2, - sym_line_comment, - sym_block_comment, - [64727] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4780), 1, anon_sym_LPAREN, - ACTIONS(3506), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2085), 2, + anon_sym_RBRACK, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 5, - anon_sym_RPAREN, + ACTIONS(3520), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3508), 5, + ACTIONS(3526), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [64759] = 7, + [64729] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3466), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2086), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, + ACTIONS(3462), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4783), 3, + ACTIONS(4781), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3489), 5, + ACTIONS(3468), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64791] = 6, + [64761] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2087), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + ACTIONS(4784), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4786), 1, anon_sym_EQ, + STATE(2012), 1, + sym_type_arguments, + STATE(2407), 1, + sym_parameters, + STATE(3075), 1, + sym_trait_bounds, + ACTIONS(3436), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4788), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64821] = 7, + STATE(2088), 2, + sym_line_comment, + sym_block_comment, + [64807] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(4790), 1, + anon_sym_LPAREN, + ACTIONS(3504), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2088), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, + ACTIONS(3500), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4786), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3516), 5, + anon_sym_LT2, + ACTIONS(3506), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64853] = 7, + [64839] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(4778), 1, + anon_sym_LPAREN, + ACTIONS(3524), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2089), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, + ACTIONS(3520), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4780), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3508), 5, + anon_sym_LT2, + ACTIONS(3526), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64885] = 7, + [64871] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - ACTIONS(4786), 2, + ACTIONS(4775), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2090), 2, + ACTIONS(3496), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 4, - anon_sym_SEMI, + ACTIONS(3492), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3516), 6, + ACTIONS(3498), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64917] = 7, + [64903] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(4771), 2, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4793), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 4, - anon_sym_SEMI, + ACTIONS(4795), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3500), 6, + ACTIONS(4797), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(4799), 1, + anon_sym_AT, + ACTIONS(4801), 1, + anon_sym_DOT_DOT, + ACTIONS(4805), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + ACTIONS(4803), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64949] = 7, + STATE(2092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4630), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [64947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(4809), 1, anon_sym_DOT_DOT, - ACTIONS(4780), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2092), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 4, + ACTIONS(4807), 12, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3508), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - [64981] = 7, + anon_sym_else, + anon_sym_in, + [64975] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_LPAREN, - ACTIONS(3498), 2, - anon_sym_COLON, + ACTIONS(3504), 1, anon_sym_DOT_DOT, - STATE(2093), 2, + ACTIONS(4790), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 5, - anon_sym_RPAREN, + ACTIONS(3500), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3500), 5, + ACTIONS(3506), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65013] = 7, + [65007] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(3487), 2, + ACTIONS(3524), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2094), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 5, - anon_sym_RPAREN, + ACTIONS(3520), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3489), 5, + ACTIONS(4778), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3526), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65045] = 7, + [65039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(3514), 2, + ACTIONS(3504), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2095), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 5, - anon_sym_RPAREN, + ACTIONS(3500), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3516), 5, + ACTIONS(4790), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3506), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65077] = 5, + [65071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - STATE(2096), 2, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 12, + ACTIONS(4630), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170593,161 +170739,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65105] = 13, + [65101] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3496), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4793), 1, + ACTIONS(4775), 3, anon_sym_LPAREN, - ACTIONS(4795), 1, - anon_sym_LBRACE, - ACTIONS(4797), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3498), 5, anon_sym_BANG, - ACTIONS(4799), 1, - anon_sym_AT, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(4805), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4803), 2, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [65149] = 7, + anon_sym_COLON_COLON, + [65133] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - ACTIONS(4783), 2, + ACTIONS(4781), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2098), 2, + ACTIONS(3466), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 4, - anon_sym_SEMI, + ACTIONS(3462), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3489), 6, + ACTIONS(3468), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65181] = 6, + [65165] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(3910), 2, + ACTIONS(3466), 1, + anon_sym_DOT_DOT, + ACTIONS(4781), 2, anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2099), 2, + anon_sym_RBRACK, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(3462), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3468), 6, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65210] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2100), 2, - sym_line_comment, - sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65253] = 10, + anon_sym_COLON_COLON, + [65197] = 10, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(4680), 1, + ACTIONS(4710), 1, anon_sym_trait, - ACTIONS(4819), 1, + ACTIONS(4811), 1, anon_sym_impl, - STATE(397), 1, + STATE(410), 1, sym_block, - STATE(3532), 1, + STATE(3463), 1, sym_label, STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65290] = 6, + [65234] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4815), 1, anon_sym_COLON, - ACTIONS(3776), 2, + ACTIONS(3808), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(4813), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170757,191 +170867,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65319] = 13, + [65263] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4819), 1, + anon_sym_GT, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4821), 1, - anon_sym_GT, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2143), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2637), 1, sym_lifetime, STATE(2103), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65362] = 13, + [65306] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, ACTIONS(4823), 1, + sym_metavariable, + ACTIONS(4825), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2143), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2637), 1, sym_lifetime, STATE(2104), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65405] = 13, + [65349] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4825), 1, + ACTIONS(4827), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2143), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2637), 1, sym_lifetime, STATE(2105), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65448] = 13, + [65392] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4827), 1, + ACTIONS(4829), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2143), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2637), 1, sym_lifetime, STATE(2106), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65491] = 13, + [65435] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4815), 1, + anon_sym_COLON, + ACTIONS(3840), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65464] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4829), 1, + ACTIONS(4831), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2143), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2637), 1, sym_lifetime, - STATE(2107), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65534] = 6, + [65507] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(3054), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + sym_identifier, + ACTIONS(4821), 1, + anon_sym_const, + ACTIONS(4823), 1, + sym_metavariable, ACTIONS(4833), 1, - anon_sym_COLON, - STATE(2108), 2, + anon_sym_GT, + STATE(1120), 1, + sym_attribute_item, + STATE(2143), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2637), 1, + sym_lifetime, + STATE(2109), 2, + sym_line_comment, + sym_block_comment, + STATE(3392), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [65550] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(4837), 1, + sym_crate, + STATE(2306), 1, + sym_string_literal, + STATE(2110), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4835), 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, + [65580] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(1427), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65562] = 6, + [65604] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_COLON, - ACTIONS(4839), 1, + ACTIONS(4843), 1, anon_sym_COLON_COLON, - STATE(2109), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 9, + ACTIONS(4839), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170951,64 +171135,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65590] = 4, + [65632] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + ACTIONS(4847), 1, + anon_sym_COLON, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 11, + ACTIONS(4845), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65614] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(4841), 1, - sym_identifier, - STATE(411), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2111), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65648] = 6, + [65660] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, + ACTIONS(4853), 1, anon_sym_COLON, - ACTIONS(4849), 1, + ACTIONS(4855), 1, anon_sym_COLON_COLON, - STATE(2112), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 9, + ACTIONS(4851), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171018,102 +171179,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65676] = 12, + [65688] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4851), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2117), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2560), 1, - sym_lifetime, - STATE(2113), 2, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_COLON, + STATE(2115), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65716] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4855), 1, + ACTIONS(4851), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4859), 1, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - STATE(3112), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65756] = 11, + anon_sym_else, + anon_sym_in, + [65716] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(4857), 1, + anon_sym_for, + STATE(2012), 1, sym_type_arguments, - STATE(2462), 1, + STATE(2077), 1, sym_parameters, - STATE(2115), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, ACTIONS(3436), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [65794] = 6, + anon_sym_where, + [65754] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, + ACTIONS(4843), 1, anon_sym_COLON_COLON, - ACTIONS(4865), 1, + ACTIONS(4853), 1, anon_sym_COLON, - STATE(2116), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(4851), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171123,107 +171250,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65822] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4867), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2117), 2, - sym_line_comment, - sym_block_comment, - STATE(3031), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65862] = 11, + [65782] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(1431), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65900] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65806] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4871), 1, - anon_sym_EQ, - STATE(2403), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + ACTIONS(4859), 1, + sym_crate, + STATE(2306), 1, + sym_string_literal, STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [65940] = 11, + ACTIONS(4835), 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, + [65836] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - ACTIONS(4873), 1, + ACTIONS(4861), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, STATE(2120), 2, sym_line_comment, @@ -171233,95 +171320,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65978] = 12, + [65874] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4875), 1, + ACTIONS(4863), 1, sym_metavariable, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2122), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2492), 1, sym_lifetime, STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3078), 3, + STATE(3009), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66018] = 12, + [65914] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4867), 1, + anon_sym_COLON, + STATE(2122), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4865), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65942] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4877), 1, + ACTIONS(4863), 1, sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2816), 1, + STATE(2132), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2637), 1, sym_lifetime, - STATE(2122), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, + STATE(3009), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66058] = 4, + [65982] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2123), 2, + ACTIONS(4855), 1, + anon_sym_COLON_COLON, + ACTIONS(4871), 1, + anon_sym_COLON, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 11, + ACTIONS(4869), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66082] = 6, + [66010] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_COLON, - ACTIONS(4879), 1, + ACTIONS(4751), 1, anon_sym_COLON_COLON, - STATE(2124), 2, + ACTIONS(4871), 1, + anon_sym_COLON, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(4869), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171331,312 +171442,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66110] = 11, + [66038] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4843), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2125), 2, + ACTIONS(4871), 1, + anon_sym_COLON, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4869), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [66148] = 6, + anon_sym_else, + anon_sym_in, + [66066] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(2126), 2, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + anon_sym_move, + STATE(420), 1, + sym_block, + STATE(3463), 1, + sym_label, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66100] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(1423), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66176] = 6, + [66124] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - ACTIONS(3483), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2127), 2, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(3054), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + sym_identifier, + ACTIONS(4821), 1, + anon_sym_const, + ACTIONS(4875), 1, + sym_metavariable, + STATE(1120), 1, + sym_attribute_item, + STATE(2130), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2637), 1, + sym_lifetime, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66204] = 11, + STATE(2958), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66164] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4881), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2128), 2, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(3054), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + sym_identifier, + ACTIONS(4821), 1, + anon_sym_const, + ACTIONS(4877), 1, + sym_metavariable, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(2637), 1, + sym_lifetime, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66242] = 12, + STATE(2873), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66204] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4851), 1, + ACTIONS(4823), 1, sym_metavariable, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2117), 1, + STATE(2143), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2637), 1, sym_lifetime, - STATE(2129), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66282] = 12, + [66244] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4879), 1, sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, + STATE(1077), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(1120), 1, + sym_attribute_item, + STATE(2637), 1, sym_lifetime, - STATE(2130), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3097), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66322] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4885), 1, - anon_sym_COLON, - STATE(2131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4883), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66350] = 6, + [66284] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_DOT_DOT, - ACTIONS(3502), 2, - anon_sym_LBRACE, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_LT2, - STATE(2132), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3508), 8, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66378] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, + ACTIONS(4881), 1, + anon_sym_for, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 11, + ACTIONS(3436), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66402] = 9, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66322] = 9, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(4887), 1, - anon_sym_move, - STATE(410), 1, + ACTIONS(4883), 1, + sym_identifier, + STATE(406), 1, sym_block, - STATE(3532), 1, + STATE(3463), 1, sym_label, STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(4885), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66436] = 11, + [66356] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(3438), 1, anon_sym_COLON, - ACTIONS(4658), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2012), 1, sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(2407), 1, + sym_parameters, STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3436), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [66474] = 6, + anon_sym_as, + [66394] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, + ACTIONS(3466), 1, + anon_sym_DOT_DOT, + ACTIONS(3462), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2136), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66422] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4660), 1, anon_sym_COLON, - ACTIONS(4839), 1, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4696), 1, anon_sym_COLON_COLON, - STATE(2136), 2, + STATE(2006), 1, + sym_type_arguments, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, - anon_sym_SEMI, + ACTIONS(4658), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66502] = 6, + [66460] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3504), 1, anon_sym_DOT_DOT, - ACTIONS(3510), 2, + ACTIONS(3500), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2137), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 8, + ACTIONS(3506), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -171645,164 +171771,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66530] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4889), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2138), 2, - sym_line_comment, - sym_block_comment, - STATE(3269), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66570] = 6, + [66488] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_COLON, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, + ACTIONS(3496), 1, + anon_sym_DOT_DOT, + ACTIONS(3492), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3498), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66598] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66516] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3524), 1, + anon_sym_DOT_DOT, + ACTIONS(3520), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3526), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66622] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66544] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4893), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + ACTIONS(4887), 1, + anon_sym_for, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(3436), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66652] = 7, + anon_sym_PLUS, + anon_sym_where, + [66582] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + sym_identifier, + ACTIONS(4891), 1, + anon_sym_RBRACE, + ACTIONS(4893), 1, + anon_sym_DOT_DOT, ACTIONS(4895), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, + anon_sym_COMMA, + ACTIONS(4897), 1, + sym_integer_literal, + STATE(1120), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_enum_variant_list_repeat1, STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, + STATE(2970), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66622] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(3054), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + sym_identifier, + ACTIONS(4821), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66682] = 11, + ACTIONS(4899), 1, + sym_metavariable, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(2637), 1, + sym_lifetime, + STATE(2143), 2, + sym_line_comment, + sym_block_comment, + STATE(3333), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66662] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4849), 1, anon_sym_COLON_COLON, - ACTIONS(4897), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2143), 2, + ACTIONS(4903), 1, + anon_sym_COLON, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4901), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66720] = 7, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66690] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, + ACTIONS(1275), 1, aux_sym_string_literal_token1, - ACTIONS(4899), 1, + ACTIONS(4905), 1, sym_crate, - STATE(2270), 1, + STATE(2306), 1, sym_string_literal, - STATE(2144), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(4835), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -171811,65 +171943,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66750] = 6, + [66720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2145), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(1435), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66778] = 6, + [66744] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(3494), 2, - anon_sym_LBRACE, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, anon_sym_LT2, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3500), 8, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66806] = 7, + ACTIONS(4907), 1, + anon_sym_for, + STATE(2012), 1, + sym_type_arguments, + STATE(2077), 1, + sym_parameters, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3436), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66782] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, + ACTIONS(1275), 1, aux_sym_string_literal_token1, - ACTIONS(4901), 1, + ACTIONS(4909), 1, sym_crate, - STATE(2270), 1, + STATE(2306), 1, sym_string_literal, - STATE(2147), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(4835), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -171878,53 +172013,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66836] = 11, + [66812] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(3416), 1, + anon_sym_COLON, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2407), 1, sym_parameters, - STATE(2148), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3412), 4, anon_sym_PLUS, - anon_sym_where, - [66874] = 11, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [66850] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - ACTIONS(4905), 1, + ACTIONS(4911), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, - STATE(2149), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, ACTIONS(3436), 4, @@ -171932,26 +172067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66912] = 11, + [66888] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - ACTIONS(4907), 1, + ACTIONS(4913), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, - STATE(2150), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, ACTIONS(3436), 4, @@ -171959,66 +172094,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66950] = 6, + [66926] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_COLON, - STATE(2151), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4835), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66978] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, + ACTIONS(4855), 1, + anon_sym_COLON_COLON, STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 11, + ACTIONS(4839), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67002] = 11, + [66954] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4638), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4652), 1, anon_sym_COLON_COLON, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2077), 1, sym_parameters, STATE(2153), 2, sym_line_comment, @@ -172028,131 +172143,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67040] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2154), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67078] = 12, + [66992] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4889), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4893), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, + ACTIONS(4897), 1, sym_integer_literal, - ACTIONS(4911), 1, + ACTIONS(4917), 1, anon_sym_RBRACE, - ACTIONS(4913), 1, + ACTIONS(4919), 1, anon_sym_COMMA, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2520), 1, aux_sym_enum_variant_list_repeat1, - STATE(2155), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - STATE(3062), 3, + STATE(3011), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67118] = 6, + [67032] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4917), 1, - anon_sym_COLON, - STATE(2156), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 9, + ACTIONS(1419), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67146] = 4, + [67056] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + ACTIONS(4841), 1, + anon_sym_COLON, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 10, + ACTIONS(4839), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67169] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [67084] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4923), 1, - anon_sym_RBRACE, - ACTIONS(4925), 1, + ACTIONS(3444), 1, + anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2407), 1, + sym_parameters, + STATE(2157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4927), 1, - sym_crate, - STATE(1115), 1, - sym_attribute_item, - STATE(2268), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2866), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, + anon_sym_as, + [67122] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3438), 1, + anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_EQ, + STATE(2387), 1, + sym_type_arguments, + STATE(2407), 1, + sym_parameters, STATE(2158), 2, sym_line_comment, sym_block_comment, - [67210] = 4, + ACTIONS(3436), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [67162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172160,7 +172276,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, + ACTIONS(4923), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172171,35 +172287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67233] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [67185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4933), 1, - anon_sym_RBRACE, - ACTIONS(4935), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2273), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2878), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, STATE(2160), 2, sym_line_comment, sym_block_comment, - [67274] = 4, + ACTIONS(4925), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67208] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172207,7 +172314,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 10, + ACTIONS(4927), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172218,35 +172325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67297] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [67231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4939), 1, - anon_sym_RBRACE, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2311), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3105), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, STATE(2162), 2, sym_line_comment, sym_block_comment, - [67338] = 4, + ACTIONS(4929), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67254] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172254,7 +172352,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, + ACTIONS(4931), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172265,33 +172363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67361] = 11, + [67277] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4943), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, STATE(2164), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67398] = 4, + ACTIONS(4933), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67300] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172299,7 +172390,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 10, + ACTIONS(4935), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172310,33 +172401,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67421] = 11, + [67323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4945), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, STATE(2166), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67458] = 4, + ACTIONS(4937), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67346] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172344,7 +172428,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, + ACTIONS(4939), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172355,33 +172439,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67481] = 11, + [67369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4949), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, STATE(2168), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67518] = 4, + ACTIONS(4941), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172389,7 +172466,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 10, + ACTIONS(4943), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172400,7 +172477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67541] = 4, + [67415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172408,7 +172485,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 10, + ACTIONS(4945), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172419,7 +172496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67564] = 4, + [67438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172427,7 +172504,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 10, + ACTIONS(4947), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172438,30 +172515,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67587] = 8, + [67461] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4955), 1, + ACTIONS(4949), 1, anon_sym_BANG, - STATE(1643), 1, + ACTIONS(4951), 1, + anon_sym_DOT_DOT, + ACTIONS(4955), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym_type_arguments, + ACTIONS(4953), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67618] = 4, + ACTIONS(4658), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [67496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172480,26 +172559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67641] = 4, + [67519] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + sym_identifier, + ACTIONS(4893), 1, + anon_sym_DOT_DOT, + ACTIONS(4897), 1, + sym_integer_literal, + ACTIONS(4959), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_enum_variant_list_repeat1, STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67664] = 4, + STATE(3457), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172518,26 +172604,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67687] = 4, + [67579] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3448), 1, + anon_sym_COLON, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2407), 1, + sym_parameters, STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3446), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67710] = 4, + anon_sym_as, + [67614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172545,7 +172637,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 10, + ACTIONS(4963), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172556,7 +172648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67733] = 4, + [67637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172575,7 +172667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67756] = 4, + [67660] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172594,7 +172686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67779] = 4, + [67683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172613,45 +172705,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67802] = 4, + [67706] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, + ACTIONS(4971), 1, + anon_sym_BANG, + STATE(1666), 1, + sym_type_arguments, STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67825] = 4, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67737] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4975), 1, + anon_sym_RBRACE, + ACTIONS(4977), 1, + anon_sym_COMMA, + ACTIONS(4979), 1, + sym_crate, + STATE(1120), 1, + sym_attribute_item, + STATE(2279), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3148), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67848] = 4, + [67778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172659,7 +172764,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 10, + ACTIONS(4851), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172670,15 +172775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67871] = 4, + [67801] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + STATE(1666), 1, + sym_type_arguments, STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 10, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67832] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4981), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172689,75 +172817,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67894] = 9, + [67855] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4979), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2185), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, + ACTIONS(4630), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [67927] = 10, + anon_sym_else, + anon_sym_in, + [67878] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4632), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4636), 1, + anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(4983), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67962] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 10, - anon_sym_SEMI, + ACTIONS(4630), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67985] = 4, + [67913] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172765,7 +172869,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 10, + ACTIONS(4985), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172776,26 +172880,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68008] = 4, + [67936] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 10, + ACTIONS(3532), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68031] = 4, + [67969] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172803,7 +172912,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(4989), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172814,7 +172923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68054] = 4, + [67992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172822,7 +172931,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 10, + ACTIONS(1485), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172833,63 +172942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68077] = 8, + [68015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68108] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2193), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [68143] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2194), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4999), 10, + ACTIONS(4991), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172900,108 +172961,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68166] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(5003), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2266), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2850), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2195), 2, - sym_line_comment, - sym_block_comment, - [68207] = 4, + [68038] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2196), 2, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4658), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68230] = 8, + [68073] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_BANG, - STATE(1123), 1, + ACTIONS(4734), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym_type_arguments, - STATE(2197), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68261] = 8, + [68104] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2198), 2, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + sym_identifier, + ACTIONS(4893), 1, + anon_sym_DOT_DOT, + ACTIONS(4897), 1, + sym_integer_literal, + ACTIONS(4993), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68292] = 4, + STATE(3457), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2199), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 10, + ACTIONS(4995), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173012,114 +173054,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68315] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5009), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2200), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [68350] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2201), 2, + [68164] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2197), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68387] = 10, + ACTIONS(4997), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2202), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4999), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [68422] = 8, + anon_sym_else, + anon_sym_in, + [68210] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(3422), 1, anon_sym_LT2, - ACTIONS(3602), 1, + ACTIONS(3584), 1, anon_sym_COLON_COLON, - ACTIONS(5013), 1, + ACTIONS(5001), 1, anon_sym_BANG, - STATE(1123), 1, + STATE(1203), 1, sym_type_arguments, - STATE(2203), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68453] = 4, + [68241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 10, + ACTIONS(5003), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173130,15 +173134,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68476] = 4, + [68264] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5005), 1, + anon_sym_RBRACE, + ACTIONS(5007), 1, + anon_sym_COMMA, + STATE(1120), 1, + sym_attribute_item, + STATE(2315), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3153), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, + STATE(2201), 2, + sym_line_comment, + sym_block_comment, + [68305] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 10, + ACTIONS(5009), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173149,15 +173181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68499] = 4, + [68328] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2206), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 10, + ACTIONS(5011), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173168,15 +173200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68522] = 4, + [68351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 10, + ACTIONS(4839), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173187,7 +173219,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68545] = 4, + [68374] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + sym_identifier, + ACTIONS(4893), 1, + anon_sym_DOT_DOT, + ACTIONS(4897), 1, + sym_integer_literal, + ACTIONS(5013), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2205), 2, + sym_line_comment, + sym_block_comment, + STATE(3457), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68411] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(2191), 1, + sym_block, + STATE(3736), 1, + sym_label, + STATE(2206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68442] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5015), 1, + sym_identifier, + ACTIONS(5017), 1, + anon_sym_RBRACE, + ACTIONS(5019), 1, + anon_sym_COMMA, + STATE(1120), 1, + sym_attribute_item, + STATE(2281), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3001), 1, + sym_field_declaration, + STATE(3683), 1, + sym_visibility_modifier, + STATE(2207), 2, + sym_line_comment, + sym_block_comment, + [68483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173195,7 +173304,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 10, + ACTIONS(4869), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173206,7 +173315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68568] = 4, + [68506] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173214,7 +173323,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173225,38 +173334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68591] = 8, + [68529] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68622] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2211), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5025), 10, + ACTIONS(5023), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173267,132 +173353,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68645] = 11, + [68552] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + sym_identifier, + ACTIONS(4893), 1, anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2212), 2, + ACTIONS(4897), 1, + sym_integer_literal, + ACTIONS(5025), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2211), 2, sym_line_comment, sym_block_comment, - [68681] = 12, + STATE(3457), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68589] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(5015), 1, sym_identifier, ACTIONS(5027), 1, anon_sym_RBRACE, - STATE(1115), 1, + ACTIONS(5029), 1, + anon_sym_COMMA, + STATE(1120), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2303), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(3002), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3683), 1, sym_visibility_modifier, - STATE(2213), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [68719] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [68630] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5029), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2214), 2, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + STATE(1203), 1, + sym_type_arguments, + STATE(2213), 2, sym_line_comment, sym_block_comment, - [68757] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68661] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4889), 1, sym_identifier, - ACTIONS(5031), 1, - anon_sym_RBRACE, - STATE(1115), 1, + ACTIONS(4893), 1, + anon_sym_DOT_DOT, + ACTIONS(4897), 1, + sym_integer_literal, + STATE(1120), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2520), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2215), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - [68795] = 8, + STATE(3457), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68695] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, STATE(2008), 1, sym_type_arguments, - STATE(2441), 1, + STATE(2416), 1, sym_parameters, - STATE(2216), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, + ACTIONS(3516), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [68825] = 12, + [68725] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3466), 1, + anon_sym_DOT_DOT, + STATE(2216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [68749] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, + STATE(2217), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68781] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173407,76 +173533,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - STATE(1187), 1, + STATE(1412), 1, sym_field_declaration_list, - STATE(2366), 1, + STATE(2374), 1, sym_type_parameters, - STATE(2885), 1, + STATE(2929), 1, sym_ordered_field_declaration_list, - STATE(3241), 1, + STATE(3272), 1, sym_where_clause, - STATE(2217), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - [68863] = 5, + [68819] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - STATE(2218), 2, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5043), 1, + anon_sym_SEMI, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym_field_declaration_list, + STATE(2357), 1, + sym_type_parameters, + STATE(2870), 1, + sym_ordered_field_declaration_list, + STATE(3283), 1, + sym_where_clause, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 8, + [68857] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68887] = 5, + STATE(2008), 1, + sym_type_arguments, + STATE(2416), 1, + sym_parameters, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68887] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_DOT_DOT, - STATE(2219), 2, + ACTIONS(5049), 1, + anon_sym_PLUS, + STATE(2233), 1, + aux_sym_trait_bounds_repeat1, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68911] = 7, + ACTIONS(5047), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, - STATE(2220), 2, + ACTIONS(5051), 1, + anon_sym_PLUS, + STATE(2233), 1, + aux_sym_trait_bounds_repeat1, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + ACTIONS(5047), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, [68939] = 12, ACTIONS(69), 1, anon_sym_pub, @@ -173484,410 +173639,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2309), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3303), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, + STATE(2223), 2, + sym_line_comment, + sym_block_comment, + [68977] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(5015), 1, sym_identifier, - ACTIONS(5045), 1, + ACTIONS(5055), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2283), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(3381), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3683), 1, sym_visibility_modifier, - STATE(2221), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [68977] = 5, + [69015] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2222), 3, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5057), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2309), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3303), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, + STATE(2225), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5047), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69001] = 7, + [69053] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5052), 1, + ACTIONS(5059), 1, anon_sym_COLON_COLON, - STATE(1123), 1, + STATE(2006), 1, sym_type_arguments, - STATE(2223), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69029] = 9, + [69081] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, + ACTIONS(5061), 1, anon_sym_LPAREN, - ACTIONS(5059), 1, + ACTIONS(5066), 1, anon_sym_LBRACK, - ACTIONS(5062), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - STATE(3502), 1, + STATE(3640), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, - ACTIONS(5057), 3, + ACTIONS(5064), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2224), 3, + STATE(2227), 3, sym_line_comment, sym_block_comment, aux_sym_macro_definition_repeat1, - [69061] = 10, + [69113] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5065), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2225), 2, + ACTIONS(5072), 1, + anon_sym_SEMI, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_declaration_list, + STATE(2228), 2, sym_line_comment, sym_block_comment, - [69095] = 9, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69141] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5068), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2226), 2, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5015), 1, + sym_identifier, + ACTIONS(5076), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2283), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3381), 1, + sym_field_declaration, + STATE(3683), 1, + sym_visibility_modifier, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69127] = 9, + [69179] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_DOT_DOT, - ACTIONS(4735), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(5065), 1, + ACTIONS(5078), 1, anon_sym_RBRACK, - ACTIONS(3518), 2, + ACTIONS(3532), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4654), 2, + ACTIONS(4658), 2, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2227), 2, - sym_line_comment, - sym_block_comment, - [69159] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, + ACTIONS(4666), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2228), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [69191] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2229), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69221] = 10, + [69211] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4973), 1, sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5081), 1, + anon_sym_RBRACE, + STATE(1120), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2309), 1, aux_sym_enum_variant_list_repeat1, - STATE(2230), 2, - sym_line_comment, - sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69255] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, + STATE(3303), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69283] = 9, + [69249] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5083), 1, anon_sym_for, STATE(2008), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2078), 1, sym_parameters, STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3532), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69315] = 5, + [69281] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, + ACTIONS(5049), 1, + anon_sym_PLUS, + STATE(2242), 1, + aux_sym_trait_bounds_repeat1, STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [69339] = 12, + ACTIONS(5085), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69307] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_SEMI, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_field_declaration_list, - STATE(2347), 1, - sym_type_parameters, - STATE(2930), 1, - sym_ordered_field_declaration_list, - STATE(3254), 1, - sym_where_clause, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4749), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2234), 2, sym_line_comment, sym_block_comment, - [69377] = 8, + [69343] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5087), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2309), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3303), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69407] = 9, + [69381] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5078), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5015), 1, + sym_identifier, + ACTIONS(5089), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2283), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3381), 1, + sym_field_declaration, + STATE(3683), 1, + sym_visibility_modifier, STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69439] = 8, + [69419] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, STATE(2008), 1, sym_type_arguments, - STATE(2441), 1, + STATE(2416), 1, sym_parameters, STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 5, + ACTIONS(3510), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [69469] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5080), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2238), 2, - sym_line_comment, - sym_block_comment, - [69507] = 9, + [69449] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173898,77 +174003,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4801), 1, anon_sym_DOT_DOT, - ACTIONS(5082), 1, + ACTIONS(5091), 1, anon_sym_COLON_COLON, ACTIONS(4803), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2239), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4630), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [69539] = 6, + [69481] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5086), 1, - anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5093), 1, + anon_sym_RBRACE, + STATE(1120), 1, + sym_attribute_item, + STATE(2309), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3303), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + [69519] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3504), 1, + anon_sym_DOT_DOT, STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69565] = 12, + ACTIONS(3506), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69543] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - ACTIONS(5088), 1, + ACTIONS(5015), 1, + sym_identifier, + ACTIONS(5095), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2283), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3381), 1, + sym_field_declaration, + STATE(3683), 1, sym_visibility_modifier, STATE(2241), 2, sym_line_comment, sym_block_comment, - [69603] = 6, + [69581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, + ACTIONS(5099), 1, anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, - STATE(2242), 2, + STATE(2242), 3, sym_line_comment, sym_block_comment, - ACTIONS(5084), 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(5097), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -173976,1034 +174105,1009 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69629] = 12, + [69605] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - ACTIONS(5092), 1, + ACTIONS(5015), 1, + sym_identifier, + ACTIONS(5102), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2283), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3381), 1, + sym_field_declaration, + STATE(3683), 1, sym_visibility_modifier, STATE(2243), 2, sym_line_comment, sym_block_comment, - [69667] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69643] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5094), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, + ACTIONS(3532), 1, + anon_sym_PLUS, + ACTIONS(4658), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4696), 1, + anon_sym_COLON_COLON, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5078), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2244), 2, sym_line_comment, sym_block_comment, - [69705] = 12, + [69677] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(5015), 1, sym_identifier, - ACTIONS(5096), 1, + ACTIONS(5104), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2283), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(3381), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3683), 1, sym_visibility_modifier, STATE(2245), 2, sym_line_comment, sym_block_comment, - [69743] = 7, + [69715] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, - anon_sym_SEMI, - ACTIONS(5100), 1, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5045), 1, anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, + ACTIONS(5106), 1, + anon_sym_SEMI, + STATE(720), 1, + sym_field_declaration_list, + STATE(2355), 1, + sym_type_parameters, + STATE(3136), 1, + sym_ordered_field_declaration_list, + STATE(3180), 1, + sym_where_clause, STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69771] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69753] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5102), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(5108), 1, + anon_sym_COLON_COLON, + STATE(1203), 1, + sym_type_arguments, STATE(2247), 2, sym_line_comment, sym_block_comment, - [69809] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5086), 1, - anon_sym_PLUS, - STATE(2222), 1, - aux_sym_trait_bounds_repeat1, - STATE(2248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5104), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69835] = 9, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69781] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_LPAREN, - ACTIONS(4634), 1, - anon_sym_BANG, ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(5106), 1, + ACTIONS(5110), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2249), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4630), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [69867] = 7, + [69813] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_SEMI, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(667), 1, + ACTIONS(5112), 1, + anon_sym_SEMI, + STATE(752), 1, sym_declaration_list, - STATE(2250), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69895] = 9, + [69841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5112), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(5114), 1, anon_sym_SEMI, + ACTIONS(5116), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69927] = 12, + STATE(1156), 1, + sym_declaration_list, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69869] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4973), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - ACTIONS(5114), 1, + ACTIONS(5118), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2309), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, + STATE(3303), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3688), 1, sym_visibility_modifier, - STATE(2252), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [69965] = 9, + [69907] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5116), 1, + ACTIONS(5120), 1, anon_sym_for, STATE(2008), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2078), 1, sym_parameters, - STATE(2253), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3532), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69997] = 9, + [69939] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_for, STATE(2008), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2416), 1, sym_parameters, + STATE(2253), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3528), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69969] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3496), 1, + anon_sym_DOT_DOT, STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3498), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69993] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3524), 1, + anon_sym_DOT_DOT, + STATE(2255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3526), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [70017] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, + STATE(2256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70029] = 12, + [70049] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_SEMI, - STATE(1141), 1, - sym_field_declaration_list, - STATE(2372), 1, - sym_type_parameters, - STATE(3085), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, - sym_where_clause, - STATE(2255), 2, + ACTIONS(5124), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [70067] = 9, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70081] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5126), 1, anon_sym_for, STATE(2008), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2078), 1, sym_parameters, - STATE(2256), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3532), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70099] = 12, + [70113] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5035), 1, anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, ACTIONS(5039), 1, anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5124), 1, + ACTIONS(5128), 1, anon_sym_SEMI, - STATE(643), 1, + STATE(1260), 1, sym_field_declaration_list, - STATE(2333), 1, + STATE(2370), 1, sym_type_parameters, - STATE(2905), 1, + STATE(2980), 1, sym_ordered_field_declaration_list, - STATE(3168), 1, + STATE(3181), 1, sym_where_clause, - STATE(2257), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [70137] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70151] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5126), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2258), 2, + ACTIONS(4658), 1, + anon_sym_PIPE, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4664), 1, + anon_sym_DOT_DOT, + ACTIONS(4749), 1, + anon_sym_COLON_COLON, + ACTIONS(4666), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70183] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5130), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2078), 1, + sym_parameters, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [70175] = 7, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70215] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_SEMI, - STATE(585), 1, - sym_declaration_list, - STATE(2259), 2, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(1666), 1, + sym_type_arguments, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70203] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - STATE(2260), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3516), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [70227] = 7, + [70243] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5130), 1, + ACTIONS(5134), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(1286), 1, sym_declaration_list, - STATE(2261), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70255] = 9, + [70271] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5136), 1, anon_sym_for, STATE(2008), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2078), 1, sym_parameters, - STATE(2262), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3532), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70287] = 11, + [70303] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5134), 1, + ACTIONS(5138), 1, anon_sym_SEMI, - ACTIONS(5136), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5142), 1, anon_sym_DASH_GT, - STATE(496), 1, + STATE(495), 1, sym_block, - STATE(2532), 1, + STATE(2523), 1, sym_where_clause, - STATE(3736), 1, + STATE(3740), 1, sym_label, - STATE(2263), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [70322] = 11, + [70338] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, ACTIONS(5140), 1, - anon_sym_SEMI, - ACTIONS(5142), 1, anon_sym_LBRACE, - STATE(1379), 1, + ACTIONS(5144), 1, + anon_sym_SEMI, + STATE(539), 1, sym_block, - STATE(2538), 1, + STATE(2568), 1, sym_where_clause, - STATE(3739), 1, + STATE(3740), 1, sym_label, - STATE(2264), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [70357] = 7, + [70373] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_fn, - ACTIONS(5149), 1, - anon_sym_extern, - STATE(2459), 1, - sym_extern_modifier, - STATE(2265), 3, + ACTIONS(4684), 1, + anon_sym_trait, + ACTIONS(5146), 1, + anon_sym_impl, + STATE(2267), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5144), 4, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [70384] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2966), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2266), 2, - sym_line_comment, - sym_block_comment, - [70419] = 11, + anon_sym_extern, + [70398] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5148), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5150), 1, anon_sym_LT, - STATE(739), 1, + STATE(1215), 1, sym_declaration_list, - STATE(2467), 1, + STATE(2414), 1, sym_type_parameters, - STATE(2643), 1, + STATE(2621), 1, sym_trait_bounds, - STATE(3407), 1, + STATE(3359), 1, sym_where_clause, - STATE(2267), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - [70454] = 11, + [70433] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4973), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(2913), 1, + STATE(2309), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3303), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3688), 1, sym_visibility_modifier, - STATE(2268), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - [70489] = 11, + [70468] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, + ACTIONS(5152), 1, anon_sym_SEMI, - STATE(542), 1, + ACTIONS(5154), 1, + anon_sym_DASH_GT, + STATE(614), 1, sym_block, - STATE(2494), 1, + STATE(2485), 1, sym_where_clause, - STATE(3736), 1, + STATE(3740), 1, sym_label, - STATE(2269), 2, - sym_line_comment, - sym_block_comment, - [70524] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(5158), 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, - [70545] = 11, + [70503] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5156), 1, anon_sym_SEMI, - STATE(1391), 1, + STATE(503), 1, sym_block, - STATE(2539), 1, + STATE(2501), 1, sym_where_clause, - STATE(3739), 1, + STATE(3740), 1, sym_label, STATE(2271), 2, sym_line_comment, sym_block_comment, - [70580] = 11, + [70538] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5152), 1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5150), 1, anon_sym_LT, - ACTIONS(5162), 1, - anon_sym_SEMI, - ACTIONS(5164), 1, - anon_sym_EQ, - STATE(2458), 1, + STATE(636), 1, + sym_declaration_list, + STATE(2473), 1, sym_type_parameters, - STATE(2953), 1, + STATE(2832), 1, sym_trait_bounds, - STATE(3299), 1, + STATE(3211), 1, sym_where_clause, STATE(2272), 2, sym_line_comment, sym_block_comment, - [70615] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70573] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2920), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_SEMI, + ACTIONS(5160), 1, + anon_sym_LBRACE, + STATE(1346), 1, + sym_block, + STATE(2569), 1, + sym_where_clause, + STATE(3743), 1, + sym_label, STATE(2273), 2, sym_line_comment, sym_block_comment, - [70650] = 11, + [70608] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5162), 1, + anon_sym_SEMI, + ACTIONS(5164), 1, + anon_sym_DASH_GT, + STATE(767), 1, + sym_block, + STATE(2585), 1, + sym_where_clause, + STATE(3740), 1, + sym_label, + STATE(2274), 2, + sym_line_comment, + sym_block_comment, + [70643] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - STATE(1115), 1, + ACTIONS(5015), 1, + sym_identifier, + STATE(1120), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2283), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3381), 1, + sym_field_declaration, + STATE(3683), 1, sym_visibility_modifier, - STATE(2274), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [70685] = 11, + [70678] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5166), 1, - anon_sym_SEMI, - ACTIONS(5168), 1, - anon_sym_DASH_GT, - STATE(704), 1, - sym_block, - STATE(2582), 1, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_LT, + STATE(717), 1, + sym_declaration_list, + STATE(2408), 1, + sym_type_parameters, + STATE(2602), 1, + sym_trait_bounds, + STATE(3302), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2275), 2, - sym_line_comment, - sym_block_comment, - [70720] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70741] = 11, + [70713] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5170), 1, + ACTIONS(5166), 1, anon_sym_SEMI, - STATE(1402), 1, + STATE(1116), 1, sym_block, - STATE(2540), 1, + STATE(2574), 1, sym_where_clause, - STATE(3739), 1, + STATE(3743), 1, sym_label, STATE(2277), 2, sym_line_comment, sym_block_comment, - [70776] = 8, + [70748] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - anon_sym_fn, - ACTIONS(5174), 1, - anon_sym_extern, - STATE(2265), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5168), 1, + anon_sym_SEMI, + ACTIONS(5170), 1, + anon_sym_DASH_GT, + STATE(1137), 1, + sym_block, + STATE(2580), 1, + sym_where_clause, + STATE(3743), 1, + sym_label, STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(4666), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70805] = 6, + [70783] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4706), 1, - anon_sym_trait, - ACTIONS(5176), 1, - anon_sym_impl, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(2903), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70830] = 11, + [70818] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_RBRACE, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, ACTIONS(5178), 1, - anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(5180), 1, - anon_sym_DASH_GT, - STATE(657), 1, - sym_block, - STATE(2518), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, STATE(2280), 2, sym_line_comment, sym_block_comment, - [70865] = 11, + STATE(2979), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70851] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_SEMI, - STATE(553), 1, - sym_block, - STATE(2503), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5015), 1, + sym_identifier, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(2983), 1, + sym_field_declaration, + STATE(3683), 1, + sym_visibility_modifier, STATE(2281), 2, sym_line_comment, sym_block_comment, - [70900] = 11, + [70886] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, ACTIONS(5184), 1, anon_sym_SEMI, - STATE(605), 1, + STATE(1267), 1, sym_block, - STATE(2477), 1, + STATE(2545), 1, sym_where_clause, - STATE(3736), 1, + STATE(3743), 1, sym_label, STATE(2282), 2, sym_line_comment, sym_block_comment, - [70935] = 11, + [70921] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5186), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, - anon_sym_DASH_GT, - STATE(683), 1, - sym_block, - STATE(2528), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5015), 1, + sym_identifier, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(3224), 1, + sym_field_declaration, + STATE(3683), 1, + sym_visibility_modifier, STATE(2283), 2, sym_line_comment, sym_block_comment, - [70970] = 11, + [70956] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5186), 1, anon_sym_SEMI, - STATE(1252), 1, + ACTIONS(5188), 1, + anon_sym_DASH_GT, + STATE(549), 1, sym_block, - STATE(2584), 1, + STATE(2519), 1, sym_where_clause, - STATE(3739), 1, + STATE(3740), 1, sym_label, STATE(2284), 2, sym_line_comment, sym_block_comment, - [71005] = 11, + [70991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5192), 1, - anon_sym_SEMI, - STATE(529), 1, - sym_block, - STATE(2489), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, STATE(2285), 2, sym_line_comment, sym_block_comment, - [71040] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(5097), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5194), 1, - anon_sym_SEMI, - ACTIONS(5196), 1, - anon_sym_DASH_GT, - STATE(572), 1, - sym_block, - STATE(2569), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2286), 2, - sym_line_comment, - sym_block_comment, - [71075] = 4, + [71012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2287), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, + ACTIONS(5097), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -175012,1829 +175116,1801 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71096] = 6, + [71033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - STATE(2270), 1, - sym_string_literal, - STATE(2288), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71121] = 10, + ACTIONS(5097), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71054] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5172), 1, sym_identifier, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(5202), 1, + ACTIONS(5176), 1, anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_COMMA, - ACTIONS(5206), 1, + ACTIONS(5180), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5182), 1, sym_mutable_specifier, - STATE(2289), 2, + ACTIONS(5190), 1, + anon_sym_RBRACE, + ACTIONS(5192), 1, + anon_sym_COMMA, + STATE(2288), 2, sym_line_comment, sym_block_comment, - STATE(2982), 2, + STATE(3156), 2, sym_field_pattern, sym_remaining_field_pattern, - [71154] = 11, + [71087] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5210), 1, + ACTIONS(5194), 1, anon_sym_SEMI, - ACTIONS(5212), 1, - anon_sym_DASH_GT, - STATE(1201), 1, + STATE(591), 1, sym_block, - STATE(2527), 1, + STATE(2517), 1, sym_where_clause, - STATE(3739), 1, + STATE(3740), 1, sym_label, - STATE(2290), 2, - sym_line_comment, - sym_block_comment, - [71189] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_RBRACE, - ACTIONS(5216), 1, - anon_sym_COMMA, - STATE(2291), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - STATE(2851), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71222] = 11, + [71122] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(581), 1, - sym_declaration_list, - STATE(2438), 1, - sym_type_parameters, - STATE(2723), 1, - sym_trait_bounds, - STATE(3192), 1, + ACTIONS(5196), 1, + anon_sym_SEMI, + STATE(1195), 1, + sym_block, + STATE(2581), 1, sym_where_clause, - STATE(2292), 2, + STATE(3743), 1, + sym_label, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [71257] = 10, + [71157] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5218), 1, - anon_sym_RBRACE, - ACTIONS(5220), 1, - anon_sym_COMMA, - STATE(2293), 2, + anon_sym_fn, + ACTIONS(5200), 1, + anon_sym_extern, + STATE(2304), 1, + aux_sym_function_modifiers_repeat1, + STATE(2467), 1, + sym_extern_modifier, + STATE(2291), 2, sym_line_comment, sym_block_comment, - STATE(2853), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71290] = 11, + ACTIONS(4670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71186] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5222), 1, + ACTIONS(5202), 1, anon_sym_SEMI, - ACTIONS(5224), 1, - anon_sym_DASH_GT, - STATE(1282), 1, + STATE(1222), 1, sym_block, - STATE(2533), 1, + STATE(2480), 1, sym_where_clause, - STATE(3739), 1, + STATE(3743), 1, sym_label, - STATE(2294), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [71325] = 11, + [71221] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5226), 1, + ACTIONS(5204), 1, anon_sym_SEMI, - STATE(1339), 1, + STATE(1240), 1, sym_block, - STATE(2536), 1, + STATE(2481), 1, sym_where_clause, - STATE(3739), 1, + STATE(3743), 1, sym_label, - STATE(2295), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [71360] = 11, + [71256] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, + ACTIONS(5206), 1, anon_sym_SEMI, - ACTIONS(5230), 1, + ACTIONS(5208), 1, anon_sym_DASH_GT, - STATE(1296), 1, + STATE(1275), 1, sym_block, - STATE(2534), 1, + STATE(2559), 1, sym_where_clause, - STATE(3739), 1, + STATE(3743), 1, sym_label, - STATE(2296), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [71395] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71291] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3372), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2297), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_LT, + STATE(1404), 1, + sym_declaration_list, + STATE(2406), 1, + sym_type_parameters, + STATE(2594), 1, + sym_trait_bounds, + STATE(3264), 1, + sym_where_clause, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [71430] = 10, + [71326] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5232), 1, - anon_sym_RBRACE, - ACTIONS(5234), 1, - anon_sym_COMMA, - STATE(2298), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_LT, + STATE(721), 1, + sym_declaration_list, + STATE(2453), 1, + sym_type_parameters, + STATE(2802), 1, + sym_trait_bounds, + STATE(3334), 1, + sym_where_clause, + STATE(2296), 2, sym_line_comment, sym_block_comment, - STATE(2897), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71463] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71361] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3206), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2299), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_LT, + ACTIONS(5210), 1, + anon_sym_SEMI, + ACTIONS(5212), 1, + anon_sym_EQ, + STATE(2432), 1, + sym_type_parameters, + STATE(3098), 1, + sym_trait_bounds, + STATE(3314), 1, + sym_where_clause, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [71498] = 11, + [71396] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5214), 1, anon_sym_SEMI, - ACTIONS(5238), 1, + ACTIONS(5216), 1, anon_sym_DASH_GT, - STATE(1349), 1, + STATE(1330), 1, sym_block, - STATE(2537), 1, + STATE(2560), 1, sym_where_clause, - STATE(3739), 1, + STATE(3743), 1, sym_label, - STATE(2300), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [71533] = 11, + [71431] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5240), 1, + ACTIONS(5218), 1, anon_sym_SEMI, - ACTIONS(5242), 1, + ACTIONS(5220), 1, anon_sym_DASH_GT, - STATE(1233), 1, + STATE(665), 1, sym_block, - STATE(2531), 1, + STATE(2504), 1, sym_where_clause, - STATE(3739), 1, + STATE(3740), 1, sym_label, - STATE(2301), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [71568] = 11, + [71466] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, + ACTIONS(5222), 1, anon_sym_SEMI, - STATE(703), 1, + ACTIONS(5224), 1, + anon_sym_DASH_GT, + STATE(1369), 1, sym_block, - STATE(2550), 1, + STATE(2514), 1, sym_where_clause, - STATE(3736), 1, + STATE(3743), 1, sym_label, - STATE(2302), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [71603] = 11, + [71501] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5226), 1, anon_sym_SEMI, - ACTIONS(5248), 1, + ACTIONS(5228), 1, anon_sym_DASH_GT, - STATE(593), 1, + STATE(1310), 1, sym_block, - STATE(2568), 1, + STATE(2558), 1, sym_where_clause, - STATE(3736), 1, + STATE(3743), 1, sym_label, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + [71536] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1275), 1, + aux_sym_string_literal_token1, + STATE(2306), 1, + sym_string_literal, + STATE(2302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4835), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71561] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4979), 1, + sym_crate, + ACTIONS(5015), 1, + sym_identifier, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(3037), 1, + sym_field_declaration, + STATE(3683), 1, + sym_visibility_modifier, STATE(2303), 2, sym_line_comment, sym_block_comment, - [71638] = 11, + [71596] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1242), 1, - sym_declaration_list, - STATE(2423), 1, - sym_type_parameters, - STATE(2676), 1, - sym_trait_bounds, - STATE(3236), 1, - sym_where_clause, - STATE(2304), 2, + ACTIONS(5233), 1, + anon_sym_fn, + ACTIONS(5235), 1, + anon_sym_extern, + STATE(2467), 1, + sym_extern_modifier, + STATE(2304), 3, sym_line_comment, sym_block_comment, - [71673] = 11, + aux_sym_function_modifiers_repeat1, + ACTIONS(5230), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1142), 1, - sym_declaration_list, - STATE(2442), 1, - sym_type_parameters, - STATE(2637), 1, - sym_trait_bounds, - STATE(3342), 1, - sym_where_clause, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4949), 1, + anon_sym_BANG, STATE(2305), 2, sym_line_comment, sym_block_comment, - [71708] = 11, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71648] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - ACTIONS(5250), 1, - anon_sym_SEMI, - ACTIONS(5252), 1, - anon_sym_EQ, - STATE(2443), 1, - sym_type_parameters, - STATE(3097), 1, - sym_trait_bounds, - STATE(3349), 1, - sym_where_clause, STATE(2306), 2, sym_line_comment, sym_block_comment, - [71743] = 11, + ACTIONS(5238), 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, + [71669] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5240), 1, anon_sym_SEMI, - STATE(772), 1, + STATE(579), 1, sym_block, - STATE(2578), 1, + STATE(2479), 1, sym_where_clause, - STATE(3736), 1, + STATE(3740), 1, sym_label, STATE(2307), 2, sym_line_comment, sym_block_comment, - [71778] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2308), 2, - sym_line_comment, - sym_block_comment, - [71813] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2309), 2, - sym_line_comment, - sym_block_comment, - [71846] = 11, + [71704] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(646), 1, - sym_declaration_list, - STATE(2475), 1, - sym_type_parameters, - STATE(2678), 1, - sym_trait_bounds, - STATE(3239), 1, + ACTIONS(5242), 1, + anon_sym_SEMI, + STATE(731), 1, + sym_block, + STATE(2533), 1, sym_where_clause, - STATE(2310), 2, + STATE(3740), 1, + sym_label, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [71881] = 11, + [71739] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3052), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4973), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4979), 1, sym_crate, - STATE(1079), 1, + STATE(1077), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1120), 1, sym_attribute_item, - STATE(3111), 1, + STATE(3271), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3688), 1, sym_visibility_modifier, - STATE(2311), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [71916] = 11, + [71774] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5244), 1, anon_sym_SEMI, - ACTIONS(5260), 1, + ACTIONS(5246), 1, anon_sym_DASH_GT, - STATE(1160), 1, + STATE(708), 1, sym_block, - STATE(2522), 1, + STATE(2532), 1, sym_where_clause, - STATE(3739), 1, + STATE(3740), 1, sym_label, - STATE(2312), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [71951] = 4, + [71809] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2313), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_LT, + STATE(1263), 1, + sym_declaration_list, + STATE(2396), 1, + sym_type_parameters, + STATE(2778), 1, + sym_trait_bounds, + STATE(3182), 1, + sym_where_clause, + STATE(2311), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, + [71844] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_LT, + ACTIONS(5248), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5250), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71972] = 11, + STATE(2397), 1, + sym_type_parameters, + STATE(2997), 1, + sym_trait_bounds, + STATE(3184), 1, + sym_where_clause, + STATE(2312), 2, + sym_line_comment, + sym_block_comment, + [71879] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5262), 1, + ACTIONS(5252), 1, anon_sym_SEMI, - STATE(1304), 1, + ACTIONS(5254), 1, + anon_sym_DASH_GT, + STATE(1181), 1, sym_block, - STATE(2535), 1, + STATE(2530), 1, sym_where_clause, - STATE(3739), 1, + STATE(3743), 1, sym_label, - STATE(2314), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [72007] = 11, + [71914] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1180), 1, - sym_declaration_list, - STATE(2424), 1, - sym_type_parameters, - STATE(2657), 1, - sym_trait_bounds, - STATE(3195), 1, - sym_where_clause, - STATE(2315), 2, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5256), 1, + anon_sym_RBRACE, + ACTIONS(5258), 1, + anon_sym_COMMA, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72042] = 6, + STATE(3103), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71947] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - STATE(2316), 2, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + sym_identifier, + ACTIONS(4979), 1, + sym_crate, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, + STATE(2994), 1, + sym_enum_variant, + STATE(3688), 1, + sym_visibility_modifier, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72067] = 9, + [71982] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5172), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5176), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5180), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5182), 1, sym_mutable_specifier, - ACTIONS(5264), 1, + ACTIONS(5260), 1, anon_sym_RBRACE, + ACTIONS(5262), 1, + anon_sym_COMMA, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + STATE(3105), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72015] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5264), 1, + anon_sym_SEMI, + STATE(602), 1, + sym_block, + STATE(2544), 1, + sym_where_clause, + STATE(3740), 1, + sym_label, STATE(2317), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72097] = 10, + [72050] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4630), 1, + anon_sym_PIPE, + ACTIONS(4632), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - STATE(2356), 1, - aux_sym_macro_definition_repeat1, - STATE(3373), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(4636), 1, + anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5266), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2318), 2, sym_line_comment, sym_block_comment, - [72129] = 10, + [72083] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, ACTIONS(5272), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(5274), 1, - anon_sym_RBRACE, - STATE(2373), 1, + anon_sym_LBRACE, + STATE(2227), 1, aux_sym_macro_definition_repeat1, - STATE(3395), 1, + STATE(3367), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2319), 2, sym_line_comment, sym_block_comment, - [72161] = 10, + [72115] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, ACTIONS(5276), 1, - anon_sym_RPAREN, - STATE(2329), 1, + anon_sym_RBRACE, + STATE(2358), 1, aux_sym_macro_definition_repeat1, - STATE(3425), 1, + STATE(3204), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2320), 2, sym_line_comment, sym_block_comment, - [72193] = 10, + [72147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_RBRACK, - STATE(2337), 1, - aux_sym_macro_definition_repeat1, - STATE(3427), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5278), 1, + sym_identifier, STATE(2321), 2, sym_line_comment, sym_block_comment, - [72225] = 10, + ACTIONS(4885), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72169] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5278), 1, + ACTIONS(5280), 1, anon_sym_RBRACE, - STATE(2326), 1, + STATE(2367), 1, aux_sym_macro_definition_repeat1, - STATE(3167), 1, + STATE(3183), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2322), 2, sym_line_comment, sym_block_comment, - [72257] = 10, + [72201] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5280), 1, - anon_sym_RBRACE, - STATE(2369), 1, - aux_sym_macro_definition_repeat1, - STATE(3431), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5284), 1, + anon_sym_COLON, + ACTIONS(5286), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5282), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2323), 2, sym_line_comment, sym_block_comment, - [72289] = 7, + [72229] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5176), 1, anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5288), 1, + anon_sym_RBRACE, STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72315] = 8, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72259] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_EQ, - ACTIONS(5284), 2, - anon_sym_RBRACE, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5284), 1, + anon_sym_COLON, + ACTIONS(5290), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5282), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(2325), 2, sym_line_comment, sym_block_comment, - STATE(3142), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72343] = 10, + [72287] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3232), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5290), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2326), 2, sym_line_comment, sym_block_comment, - [72375] = 10, - ACTIONS(3), 1, + ACTIONS(3532), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [72313] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5290), 1, - aux_sym_line_comment_token1, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, ACTIONS(5292), 1, - aux_sym_line_comment_token3, - ACTIONS(5294), 1, - anon_sym_BANG2, - ACTIONS(5296), 1, - anon_sym_SLASH2, - STATE(3524), 1, - sym__line_doc_comment_marker, - STATE(3539), 1, - sym__inner_line_doc_comment_marker, - STATE(3568), 1, - sym__outer_line_doc_comment_marker, + anon_sym_RPAREN, + STATE(2375), 1, + aux_sym_macro_definition_repeat1, + STATE(3342), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2327), 2, sym_line_comment, sym_block_comment, - [72407] = 9, + [72345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5298), 1, - anon_sym_RBRACE, + ACTIONS(5294), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2328), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72437] = 10, + ACTIONS(3532), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [72371] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5292), 1, + anon_sym_RBRACK, + STATE(2347), 1, aux_sym_macro_definition_repeat1, - STATE(3230), 1, + STATE(3344), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2329), 2, sym_line_comment, sym_block_comment, - [72469] = 5, + [72403] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, + ACTIONS(5172), 1, sym_identifier, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5296), 1, + anon_sym_RBRACE, STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72433] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5298), 1, + anon_sym_trait, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3560), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72491] = 10, + [72455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RPAREN, - STATE(2374), 1, - aux_sym_macro_definition_repeat1, - STATE(3330), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2331), 2, + ACTIONS(5300), 1, + sym_identifier, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [72523] = 10, + ACTIONS(4885), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72477] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(2346), 1, + ACTIONS(5302), 1, + anon_sym_RBRACE, + STATE(2227), 1, aux_sym_macro_definition_repeat1, - STATE(3332), 1, + STATE(3304), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, - STATE(2332), 2, - sym_line_comment, - sym_block_comment, - [72555] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5306), 1, - anon_sym_SEMI, - STATE(728), 1, - sym_field_declaration_list, - STATE(2890), 1, - sym_ordered_field_declaration_list, - STATE(3393), 1, - sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - [72587] = 10, + [72509] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5304), 1, anon_sym_RPAREN, - STATE(2350), 1, + STATE(2372), 1, aux_sym_macro_definition_repeat1, - STATE(3334), 1, + STATE(3188), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2334), 2, sym_line_comment, sym_block_comment, - [72619] = 10, + [72541] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(2352), 1, - aux_sym_macro_definition_repeat1, - STATE(3336), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + anon_sym_COLON, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5306), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2335), 2, sym_line_comment, sym_block_comment, - [72651] = 9, + [72569] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5310), 1, - anon_sym_RBRACE, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + ACTIONS(5312), 1, + anon_sym_LPAREN, + ACTIONS(5314), 1, + anon_sym_LBRACK, + ACTIONS(5316), 1, + anon_sym_RBRACK, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3473), 1, + sym_delim_token_tree, STATE(2336), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72681] = 10, + [72601] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4843), 1, + anon_sym_COLON_COLON, + ACTIONS(5312), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5314), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5300), 1, + ACTIONS(5316), 1, anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3231), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3473), 1, + sym_delim_token_tree, STATE(2337), 2, sym_line_comment, sym_block_comment, - [72713] = 9, + [72633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, + ACTIONS(5322), 1, sym_identifier, - sym_super, STATE(2338), 2, sym_line_comment, sym_block_comment, - [72743] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5316), 1, - sym_identifier, - STATE(2339), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4843), 6, + ACTIONS(4885), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72765] = 9, + [72655] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2340), 2, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, + ACTIONS(5324), 1, + anon_sym_RPAREN, + STATE(2354), 1, + aux_sym_macro_definition_repeat1, + STATE(3411), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, + STATE(2339), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72795] = 7, + [72687] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(5320), 1, + ACTIONS(5286), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2341), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(3532), 3, + anon_sym_RPAREN, anon_sym_PLUS, - [72821] = 5, + anon_sym_COMMA, + [72713] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5326), 1, + aux_sym_line_comment_token1, + ACTIONS(5328), 1, + aux_sym_line_comment_token3, + ACTIONS(5330), 1, + anon_sym_BANG2, + ACTIONS(5332), 1, + anon_sym_SLASH2, + STATE(3520), 1, + sym__line_doc_comment_marker, + STATE(3544), 1, + sym__inner_line_doc_comment_marker, + STATE(3563), 1, + sym__outer_line_doc_comment_marker, + STATE(2341), 2, + sym_line_comment, + sym_block_comment, + [72745] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5322), 1, - sym_identifier, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, + ACTIONS(5334), 1, + anon_sym_RBRACE, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(3305), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72843] = 7, + [72777] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5338), 1, + anon_sym_STAR, + STATE(3131), 1, + sym_use_list, + STATE(3600), 1, + sym_type_arguments, + ACTIONS(5336), 2, + sym_identifier, + sym_super, STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72869] = 8, + [72807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5340), 1, + anon_sym_trait, STATE(2344), 2, sym_line_comment, sym_block_comment, - [72897] = 10, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72829] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RPAREN, - ACTIONS(5272), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - STATE(2359), 1, - aux_sym_macro_definition_repeat1, - STATE(3367), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5344), 1, + anon_sym_EQ, + ACTIONS(5342), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2345), 2, sym_line_comment, sym_block_comment, - [72929] = 10, + STATE(2960), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [72857] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4855), 1, + anon_sym_COLON_COLON, + ACTIONS(5312), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5314), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5330), 1, + ACTIONS(5316), 1, anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3355), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5318), 1, + anon_sym_LBRACE, + ACTIONS(5320), 1, + anon_sym_EQ, + STATE(3473), 1, + sym_delim_token_tree, STATE(2346), 2, sym_line_comment, sym_block_comment, - [72961] = 10, + [72889] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5268), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5332), 1, - anon_sym_SEMI, - STATE(578), 1, - sym_field_declaration_list, - STATE(3081), 1, - sym_ordered_field_declaration_list, - STATE(3315), 1, - sym_where_clause, + ACTIONS(5346), 1, + anon_sym_RBRACK, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(3366), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2347), 2, sym_line_comment, sym_block_comment, - [72993] = 10, + [72921] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5348), 1, + anon_sym_RBRACE, STATE(2348), 2, sym_line_comment, sym_block_comment, - [73025] = 9, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72951] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5172), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5176), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5180), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5182), 1, sym_mutable_specifier, - ACTIONS(5344), 1, + ACTIONS(5350), 1, anon_sym_RBRACE, STATE(2349), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, + STATE(3199), 2, sym_field_pattern, sym_remaining_field_pattern, - [73055] = 10, + [72981] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3356), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5352), 1, + anon_sym_RBRACE, STATE(2350), 2, sym_line_comment, sym_block_comment, - [73087] = 5, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73011] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, - anon_sym_trait, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5354), 1, + anon_sym_RBRACE, STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73109] = 10, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73041] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, + ACTIONS(5304), 1, anon_sym_RBRACK, - STATE(2224), 1, + STATE(2319), 1, aux_sym_macro_definition_repeat1, - STATE(3357), 1, + STATE(3195), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2352), 2, sym_line_comment, sym_block_comment, - [73141] = 8, + [73073] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, - anon_sym_RPAREN, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + anon_sym_EQ, + ACTIONS(5356), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2353), 2, sym_line_comment, sym_block_comment, - [73169] = 7, + STATE(2908), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73101] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, + ACTIONS(5360), 1, + anon_sym_RPAREN, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(3351), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [73195] = 8, + [73133] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_EQ, - ACTIONS(5356), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5362), 1, + anon_sym_SEMI, + STATE(625), 1, + sym_field_declaration_list, + STATE(3013), 1, + sym_ordered_field_declaration_list, + STATE(3428), 1, + sym_where_clause, STATE(2355), 2, sym_line_comment, sym_block_comment, - STATE(3109), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73223] = 10, + [73165] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3207), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(4951), 1, + anon_sym_DOT_DOT, + ACTIONS(4955), 1, + anon_sym_COLON_COLON, + ACTIONS(4953), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2356), 2, sym_line_comment, sym_block_comment, - [73255] = 10, + ACTIONS(4658), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73191] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3302), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5364), 1, + anon_sym_SEMI, + STATE(714), 1, + sym_field_declaration_list, + STATE(3117), 1, + sym_ordered_field_declaration_list, + STATE(3231), 1, + sym_where_clause, STATE(2357), 2, sym_line_comment, sym_block_comment, - [73287] = 10, + [73223] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, + ACTIONS(5366), 1, anon_sym_RBRACE, - STATE(2357), 1, + STATE(2227), 1, aux_sym_macro_definition_repeat1, - STATE(3421), 1, + STATE(3369), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2358), 2, sym_line_comment, sym_block_comment, - [73319] = 10, + [73255] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5324), 1, + anon_sym_RBRACK, + STATE(2360), 1, aux_sym_macro_definition_repeat1, - STATE(3204), 1, + STATE(3165), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, STATE(2359), 2, sym_line_comment, sym_block_comment, - [73351] = 10, + [73287] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5268), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5340), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5366), 1, + ACTIONS(5360), 1, anon_sym_RBRACK, - ACTIONS(5368), 1, - anon_sym_EQ, - STATE(3464), 1, - sym_delim_token_tree, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(3353), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2360), 2, sym_line_comment, sym_block_comment, - [73383] = 9, + [73319] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, + ACTIONS(5172), 1, sym_identifier, - sym_super, + ACTIONS(5176), 1, + anon_sym_DOT_DOT, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + ACTIONS(5368), 1, + anon_sym_RBRACE, STATE(2361), 2, sym_line_comment, sym_block_comment, - [73413] = 9, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73349] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5172), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5176), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5180), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5182), 1, sym_mutable_specifier, ACTIONS(5370), 1, anon_sym_RBRACE, STATE(2362), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, + STATE(3199), 2, sym_field_pattern, sym_remaining_field_pattern, - [73443] = 9, + [73379] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, ACTIONS(5372), 1, anon_sym_RBRACE, + STATE(2333), 1, + aux_sym_macro_definition_repeat1, + STATE(3202), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2363), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73473] = 9, + [73411] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, ACTIONS(5374), 1, anon_sym_RBRACE, + STATE(2342), 1, + aux_sym_macro_definition_repeat1, + STATE(3203), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2364), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73503] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - sym_identifier, - STATE(2365), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73525] = 10, + [73443] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(5312), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5314), 1, + anon_sym_LBRACK, + ACTIONS(5318), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, + ACTIONS(5376), 1, + anon_sym_RBRACK, ACTIONS(5378), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym_field_declaration_list, - STATE(2926), 1, - sym_ordered_field_declaration_list, - STATE(3225), 1, - sym_where_clause, - STATE(2366), 2, + anon_sym_EQ, + STATE(3646), 1, + sym_delim_token_tree, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [73557] = 5, + [73475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5380), 1, - anon_sym_trait, - STATE(2367), 2, + sym_identifier, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(4885), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73579] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2368), 2, - sym_line_comment, - sym_block_comment, - [73611] = 10, + [73497] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, ACTIONS(5382), 1, anon_sym_RBRACE, - STATE(2224), 1, + STATE(2227), 1, aux_sym_macro_definition_repeat1, - STATE(3307), 1, + STATE(3354), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, - STATE(2369), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [73643] = 8, + [73529] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, + ACTIONS(5384), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2370), 2, + STATE(2371), 1, + aux_sym_macro_definition_repeat1, + STATE(3338), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [73671] = 10, + [73561] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5268), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2371), 2, + ACTIONS(5384), 1, + anon_sym_RBRACK, + STATE(2373), 1, + aux_sym_macro_definition_repeat1, + STATE(3340), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [73703] = 10, + [73593] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -176845,413 +176921,429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5384), 1, + ACTIONS(5386), 1, anon_sym_SEMI, - STATE(1169), 1, + STATE(1380), 1, sym_field_declaration_list, - STATE(2879), 1, + STATE(3014), 1, sym_ordered_field_declaration_list, - STATE(3423), 1, + STATE(3253), 1, sym_where_clause, - STATE(2372), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [73735] = 10, + [73625] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5268), 1, anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, + anon_sym_LBRACE, + ACTIONS(5388), 1, + anon_sym_RPAREN, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(3363), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, + STATE(2371), 2, + sym_line_comment, + sym_block_comment, + [73657] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, ACTIONS(5272), 1, + anon_sym_RPAREN, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5386), 1, - anon_sym_RBRACE, - STATE(2224), 1, + STATE(2227), 1, aux_sym_macro_definition_repeat1, - STATE(3209), 1, + STATE(3362), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, - STATE(2373), 2, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [73767] = 10, + [73689] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5330), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5388), 1, + anon_sym_RBRACK, + STATE(2227), 1, aux_sym_macro_definition_repeat1, - STATE(3354), 1, + STATE(3364), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3706), 1, sym_token_tree_pattern, - STATE(2374), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [73799] = 9, + [73721] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5390), 1, + anon_sym_SEMI, + STATE(1200), 1, + sym_field_declaration_list, + STATE(3018), 1, + sym_ordered_field_declaration_list, + STATE(3357), 1, + sym_where_clause, + STATE(2374), 2, + sym_line_comment, + sym_block_comment, + [73753] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACK, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_SEMI, - STATE(762), 1, - sym_declaration_list, - STATE(3135), 1, - sym_where_clause, + ACTIONS(5346), 1, + anon_sym_RPAREN, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(3365), 1, + sym_macro_rule, + STATE(3706), 1, + sym_token_tree_pattern, STATE(2375), 2, sym_line_comment, sym_block_comment, - [73828] = 9, + [73785] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(4292), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, - anon_sym_SEMI, - STATE(1334), 1, - sym_declaration_list, - STATE(2963), 1, - sym_where_clause, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5338), 1, + anon_sym_STAR, + STATE(3131), 1, + sym_use_list, + STATE(3774), 1, + sym_type_arguments, + ACTIONS(5336), 2, + sym_identifier, + sym_super, STATE(2376), 2, sym_line_comment, sym_block_comment, - [73857] = 9, + [73815] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, ACTIONS(5392), 1, anon_sym_SEMI, - STATE(1162), 1, + STATE(741), 1, sym_declaration_list, - STATE(2874), 1, + STATE(3010), 1, sym_where_clause, STATE(2377), 2, sym_line_comment, sym_block_comment, - [73886] = 9, + [73844] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_enum_variant_list, - STATE(2659), 1, - sym_type_parameters, - STATE(3223), 1, - sym_where_clause, + ACTIONS(3730), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4947), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5394), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2378), 2, sym_line_comment, sym_block_comment, - [73915] = 5, + [73867] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5397), 1, + sym_identifier, + ACTIONS(5399), 1, + anon_sym_ref, + ACTIONS(5401), 1, + sym_mutable_specifier, + ACTIONS(5403), 1, + anon_sym_move, + STATE(246), 1, + sym_closure_parameters, STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73936] = 9, + [73896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, - anon_sym_COMMA, - STATE(3024), 1, - sym_trait_bounds, - STATE(3025), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(977), 1, + anon_sym_DOT_DOT, STATE(2380), 2, sym_line_comment, sym_block_comment, - [73965] = 5, + ACTIONS(979), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73917] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, + ACTIONS(985), 1, anon_sym_DOT_DOT, STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 5, + ACTIONS(987), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [73986] = 9, + [73938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_enum_variant_list, - STATE(2664), 1, - sym_type_parameters, - STATE(3387), 1, - sym_where_clause, + ACTIONS(989), 1, + anon_sym_DOT_DOT, STATE(2382), 2, sym_line_comment, sym_block_comment, - [74015] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5402), 1, + ACTIONS(991), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_if, - STATE(3741), 1, - sym_label, - STATE(1814), 2, - sym_if_expression, - sym_block, - STATE(2383), 2, - sym_line_comment, - sym_block_comment, - [74042] = 5, + [73959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(993), 1, anon_sym_DOT_DOT, - STATE(2384), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 5, + ACTIONS(995), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [74063] = 9, + [73980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5404), 1, - anon_sym_SEMI, - STATE(712), 1, - sym_declaration_list, - STATE(2907), 1, - sym_where_clause, - STATE(2385), 2, + STATE(2384), 2, sym_line_comment, sym_block_comment, - [74092] = 5, + ACTIONS(5064), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [73999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, + ACTIONS(4809), 1, anon_sym_DOT_DOT, - STATE(2386), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 5, + ACTIONS(4807), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [74113] = 9, + [74020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(651), 1, - sym_field_declaration_list, - STATE(2694), 1, - sym_type_parameters, - STATE(3346), 1, - sym_where_clause, - STATE(2387), 2, + ACTIONS(5405), 1, + anon_sym_DASH_GT, + STATE(2386), 2, sym_line_comment, sym_block_comment, - [74142] = 6, + ACTIONS(3660), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5068), 1, - anon_sym_for, - STATE(2388), 2, + ACTIONS(3654), 1, + anon_sym_COLON, + ACTIONS(5407), 1, + anon_sym_EQ, + STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3652), 4, anon_sym_PLUS, - anon_sym_where, - [74165] = 7, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [74064] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(5172), 1, + sym_identifier, + ACTIONS(5176), 1, anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2389), 2, + ACTIONS(5180), 1, + anon_sym_ref, + ACTIONS(5182), 1, + sym_mutable_specifier, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [74190] = 5, + STATE(3199), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, + ACTIONS(5409), 1, anon_sym_DASH_GT, - STATE(2390), 2, + STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 5, + ACTIONS(3746), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [74211] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [74112] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - sym_identifier, - ACTIONS(5410), 1, - anon_sym_ref, - ACTIONS(5412), 1, - sym_mutable_specifier, - ACTIONS(5414), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, - STATE(2391), 2, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1235), 1, + sym_enum_variant_list, + STATE(2761), 1, + sym_type_parameters, + STATE(3172), 1, + sym_where_clause, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [74240] = 9, + [74141] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5416), 1, - anon_sym_GT, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2898), 1, - sym_trait_bounds, - STATE(2899), 1, - aux_sym_type_arguments_repeat1, - STATE(2392), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5413), 1, + anon_sym_SEMI, + STATE(1249), 1, + sym_declaration_list, + STATE(2967), 1, + sym_where_clause, + STATE(2391), 2, sym_line_comment, sym_block_comment, - [74269] = 6, + [74170] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5420), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2393), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1269), 1, + sym_field_declaration_list, + STATE(2782), 1, + sym_type_parameters, + STATE(3187), 1, + sym_where_clause, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [74292] = 6, + [74199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -177261,1718 +177353,1773 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4803), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2394), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4630), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [74315] = 6, + [74222] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5415), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym_declaration_list, + STATE(3021), 1, + sym_where_clause, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + [74251] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5286), 1, anon_sym_COLON_COLON, - ACTIONS(5072), 1, - anon_sym_for, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5306), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74338] = 9, + [74276] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5423), 1, - anon_sym_SEMI, - STATE(717), 1, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(1387), 1, sym_declaration_list, - STATE(3042), 1, + STATE(2592), 1, + sym_trait_bounds, + STATE(3255), 1, sym_where_clause, STATE(2396), 2, sym_line_comment, sym_block_comment, - [74367] = 5, + [74305] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5425), 1, - anon_sym_DASH_GT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5417), 1, + anon_sym_SEMI, + ACTIONS(5419), 1, + anon_sym_EQ, + STATE(3036), 1, + sym_trait_bounds, + STATE(3259), 1, + sym_where_clause, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74388] = 8, + [74334] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5427), 1, - anon_sym_if, - STATE(3677), 1, - sym_label, - STATE(1471), 2, - sym_if_expression, - sym_block, + ACTIONS(5421), 1, + anon_sym_SEMI, + STATE(1402), 1, + sym_declaration_list, + STATE(3145), 1, + sym_where_clause, STATE(2398), 2, sym_line_comment, sym_block_comment, - [74415] = 9, + [74363] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(5039), 1, + anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5411), 1, anon_sym_LBRACE, - ACTIONS(5429), 1, - anon_sym_SEMI, - STATE(1371), 1, - sym_declaration_list, - STATE(2967), 1, + STATE(1407), 1, + sym_enum_variant_list, + STATE(2596), 1, + sym_type_parameters, + STATE(3270), 1, sym_where_clause, STATE(2399), 2, sym_line_comment, sym_block_comment, - [74444] = 6, + [74392] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym_where_clause_repeat1, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1413), 1, + sym_field_declaration_list, + STATE(2597), 1, + sym_type_parameters, + STATE(3273), 1, + sym_where_clause, STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [74467] = 9, + [74421] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_SEMI, - STATE(758), 1, - sym_declaration_list, - STATE(3126), 1, - sym_where_clause, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(3061), 1, + sym_trait_bounds, + STATE(3070), 1, + aux_sym_type_arguments_repeat1, STATE(2401), 2, sym_line_comment, sym_block_comment, - [74496] = 9, + [74450] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5437), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(3127), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5427), 1, + anon_sym_if, + STATE(3680), 1, + sym_label, + STATE(1489), 2, + sym_if_expression, + sym_block, STATE(2402), 2, sym_line_comment, sym_block_comment, - [74525] = 6, + [74477] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, - anon_sym_COLON, - ACTIONS(5439), 1, - anon_sym_EQ, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5429), 1, + anon_sym_SEMI, + STATE(1386), 1, + sym_declaration_list, + STATE(2942), 1, + sym_where_clause, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74548] = 7, + [74506] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5431), 1, + anon_sym_SEMI, + STATE(1408), 1, + sym_declaration_list, + STATE(2957), 1, + sym_where_clause, STATE(2404), 2, sym_line_comment, sym_block_comment, - [74573] = 6, + [74535] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5443), 1, - anon_sym_COMMA, - STATE(2446), 1, - aux_sym_where_clause_repeat1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5433), 1, + anon_sym_SEMI, + STATE(1165), 1, + sym_declaration_list, + STATE(2993), 1, + sym_where_clause, STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [74596] = 9, + [74564] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, - anon_sym_SEMI, - STATE(760), 1, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(1177), 1, sym_declaration_list, - STATE(3131), 1, + STATE(2617), 1, + sym_trait_bounds, + STATE(3349), 1, sym_where_clause, STATE(2406), 2, sym_line_comment, sym_block_comment, - [74625] = 9, + [74593] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_SEMI, - STATE(1373), 1, - sym_declaration_list, - STATE(2968), 1, - sym_where_clause, + ACTIONS(5435), 1, + anon_sym_DASH_GT, STATE(2407), 2, sym_line_comment, sym_block_comment, - [74654] = 8, + ACTIONS(3670), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74614] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(779), 1, + sym_declaration_list, + STATE(2784), 1, + sym_trait_bounds, + STATE(3240), 1, + sym_where_clause, STATE(2408), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74681] = 9, + [74643] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, + ACTIONS(5437), 1, anon_sym_SEMI, - STATE(766), 1, + STATE(635), 1, sym_declaration_list, - STATE(3141), 1, + STATE(3108), 1, sym_where_clause, STATE(2409), 2, sym_line_comment, sym_block_comment, - [74710] = 9, + [74672] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5451), 1, + ACTIONS(5439), 1, anon_sym_SEMI, - STATE(1254), 1, + STATE(1271), 1, sym_declaration_list, - STATE(2939), 1, + STATE(2849), 1, sym_where_clause, STATE(2410), 2, sym_line_comment, sym_block_comment, - [74739] = 9, + [74701] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(5441), 1, anon_sym_SEMI, - STATE(1256), 1, + STATE(1274), 1, sym_declaration_list, - STATE(2940), 1, + STATE(2850), 1, sym_where_clause, STATE(2411), 2, sym_line_comment, sym_block_comment, - [74768] = 9, + [74730] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - STATE(1188), 1, - sym_field_declaration_list, - STATE(2661), 1, - sym_type_parameters, - STATE(3255), 1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, + anon_sym_SEMI, + STATE(1309), 1, + sym_declaration_list, + STATE(2855), 1, sym_where_clause, STATE(2412), 2, sym_line_comment, sym_block_comment, - [74797] = 9, + [74759] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5455), 1, + ACTIONS(5445), 1, anon_sym_SEMI, - STATE(608), 1, + STATE(1315), 1, sym_declaration_list, - STATE(2970), 1, + STATE(2856), 1, sym_where_clause, STATE(2413), 2, sym_line_comment, sym_block_comment, - [74826] = 9, + [74788] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5457), 1, - anon_sym_SEMI, - STATE(611), 1, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(1325), 1, sym_declaration_list, - STATE(3104), 1, + STATE(2645), 1, + sym_trait_bounds, + STATE(3402), 1, sym_where_clause, STATE(2414), 2, sym_line_comment, sym_block_comment, - [74855] = 5, + [74817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_DOT_DOT, + ACTIONS(5447), 1, + anon_sym_DASH_GT, STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74876] = 9, + ACTIONS(3764), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5459), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym_declaration_list, - STATE(2942), 1, - sym_where_clause, + ACTIONS(5449), 1, + anon_sym_DASH_GT, STATE(2416), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + ACTIONS(3676), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74859] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(5039), 1, + anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5461), 1, - anon_sym_SEMI, - STATE(1262), 1, - sym_declaration_list, - STATE(2943), 1, + STATE(724), 1, + sym_field_declaration_list, + STATE(2845), 1, + sym_type_parameters, + STATE(3233), 1, sym_where_clause, STATE(2417), 2, sym_line_comment, sym_block_comment, - [74934] = 6, + [74888] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_RBRACK, - ACTIONS(5005), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_declaration_list, + STATE(2904), 1, + sym_where_clause, STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [74957] = 9, + [74917] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, + ACTIONS(5453), 1, anon_sym_SEMI, - STATE(1205), 1, + STATE(1360), 1, sym_declaration_list, - STATE(2915), 1, + STATE(2905), 1, sym_where_clause, STATE(2419), 2, sym_line_comment, sym_block_comment, - [74986] = 9, + [74946] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5465), 1, + ACTIONS(5455), 1, anon_sym_SEMI, - STATE(1209), 1, + STATE(1389), 1, sym_declaration_list, - STATE(2916), 1, + STATE(2909), 1, sym_where_clause, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75015] = 9, + [74975] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, + ACTIONS(5457), 1, anon_sym_SEMI, - STATE(719), 1, + STATE(1394), 1, sym_declaration_list, - STATE(3044), 1, + STATE(2910), 1, sym_where_clause, STATE(2421), 2, sym_line_comment, sym_block_comment, - [75044] = 9, + [75004] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, + ACTIONS(5459), 1, anon_sym_SEMI, - STATE(1226), 1, + STATE(1107), 1, sym_declaration_list, - STATE(2922), 1, + STATE(2919), 1, sym_where_clause, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75073] = 9, + [75033] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1294), 1, + ACTIONS(5461), 1, + anon_sym_SEMI, + STATE(1110), 1, sym_declaration_list, - STATE(2689), 1, - sym_trait_bounds, - STATE(3328), 1, + STATE(2921), 1, sym_where_clause, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75102] = 9, + [75062] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1231), 1, - sym_declaration_list, - STATE(2674), 1, - sym_trait_bounds, - STATE(3203), 1, - sym_where_clause, + ACTIONS(5465), 1, + anon_sym_COMMA, + STATE(2430), 1, + aux_sym_where_clause_repeat1, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75131] = 6, + ACTIONS(5463), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [75085] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3150), 1, anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - [75154] = 8, - ACTIONS(19), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, + ACTIONS(5467), 1, + anon_sym_SEMI, + STATE(1184), 1, + sym_declaration_list, + STATE(2932), 1, + sym_where_clause, + STATE(2425), 2, + sym_line_comment, + sym_block_comment, + [75114] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5471), 1, - anon_sym_if, - STATE(3532), 1, - sym_label, - STATE(406), 2, - sym_if_expression, - sym_block, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(5469), 1, + anon_sym_SEMI, + STATE(1187), 1, + sym_declaration_list, + STATE(2933), 1, + sym_where_clause, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75181] = 9, + [75143] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(5039), 1, + anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5471), 1, anon_sym_LBRACE, - ACTIONS(5473), 1, - anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, - STATE(2962), 1, + STATE(640), 1, + sym_enum_variant_list, + STATE(2844), 1, + sym_type_parameters, + STATE(3249), 1, sym_where_clause, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75210] = 9, + [75172] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(5039), 1, + anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5471), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, - anon_sym_SEMI, - STATE(626), 1, - sym_declaration_list, - STATE(3137), 1, + STATE(651), 1, + sym_enum_variant_list, + STATE(2759), 1, + sym_type_parameters, + STATE(3284), 1, sym_where_clause, STATE(2428), 2, sym_line_comment, sym_block_comment, - [75239] = 7, + [75201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5473), 1, + anon_sym_DASH_GT, STATE(2429), 2, sym_line_comment, sym_block_comment, - [75264] = 5, + ACTIONS(3740), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75222] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, + ACTIONS(5475), 1, + anon_sym_COMMA, + STATE(2446), 1, + aux_sym_where_clause_repeat1, STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75285] = 9, + ACTIONS(3514), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [75245] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, + ACTIONS(5148), 1, + anon_sym_COLON, ACTIONS(5477), 1, - anon_sym_SEMI, - STATE(609), 1, - sym_declaration_list, - STATE(3018), 1, - sym_where_clause, + anon_sym_GT, + ACTIONS(5479), 1, + anon_sym_COMMA, + STATE(3100), 1, + sym_trait_bounds, + STATE(3104), 1, + aux_sym_type_arguments_repeat1, STATE(2431), 2, sym_line_comment, sym_block_comment, - [75314] = 9, + [75274] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5479), 1, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5481), 1, anon_sym_SEMI, - STATE(615), 1, - sym_declaration_list, - STATE(2903), 1, + ACTIONS(5483), 1, + anon_sym_EQ, + STATE(3094), 1, + sym_trait_bounds, + STATE(3192), 1, sym_where_clause, STATE(2432), 2, sym_line_comment, sym_block_comment, - [75343] = 5, + [75303] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5485), 1, + anon_sym_if, + STATE(3744), 1, + sym_label, + STATE(480), 2, + sym_if_expression, + sym_block, STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [75364] = 9, + [75330] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(5487), 1, anon_sym_SEMI, - STATE(521), 1, + STATE(670), 1, sym_declaration_list, - STATE(3088), 1, + STATE(3006), 1, sym_where_clause, STATE(2434), 2, sym_line_comment, sym_block_comment, - [75393] = 6, + [75359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5483), 1, - anon_sym_RBRACK, - ACTIONS(4973), 2, - anon_sym_PIPE, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5286), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5489), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [75416] = 9, + [75384] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5486), 1, - anon_sym_SEMI, - STATE(523), 1, - sym_declaration_list, - STATE(3106), 1, - sym_where_clause, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5491), 1, + anon_sym_GT, + ACTIONS(5493), 1, + anon_sym_COMMA, + STATE(2891), 1, + sym_trait_bounds, + STATE(2892), 1, + aux_sym_type_arguments_repeat1, STATE(2436), 2, sym_line_comment, sym_block_comment, - [75445] = 9, + [75413] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(618), 1, - sym_declaration_list, - STATE(2964), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5495), 1, + anon_sym_if, + STATE(3745), 1, + sym_label, + STATE(1830), 2, + sym_if_expression, + sym_block, STATE(2437), 2, sym_line_comment, sym_block_comment, - [75474] = 9, + [75440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(4947), 2, anon_sym_COLON, - STATE(681), 1, - sym_declaration_list, - STATE(2665), 1, - sym_trait_bounds, - STATE(3385), 1, - sym_where_clause, + anon_sym_PIPE, STATE(2438), 2, sym_line_comment, sym_block_comment, - [75503] = 6, + ACTIONS(3730), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [75461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_for, + ACTIONS(4925), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3726), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [75526] = 8, + anon_sym_COMMA, + anon_sym_DASH_GT, + [75482] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5490), 1, - anon_sym_GT, - ACTIONS(5492), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_field_declaration_list, + STATE(2641), 1, + sym_type_parameters, + STATE(3311), 1, + sym_where_clause, STATE(2440), 2, sym_line_comment, sym_block_comment, - [75553] = 5, + [75511] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5494), 1, - anon_sym_DASH_GT, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5497), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_declaration_list, + STATE(2982), 1, + sym_where_clause, STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75574] = 9, + [75540] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1172), 1, + ACTIONS(5499), 1, + anon_sym_SEMI, + STATE(735), 1, sym_declaration_list, - STATE(2655), 1, - sym_trait_bounds, - STATE(3159), 1, + STATE(2986), 1, sym_where_clause, STATE(2442), 2, sym_line_comment, sym_block_comment, - [75603] = 9, + [75569] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5496), 1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5501), 1, anon_sym_SEMI, - ACTIONS(5498), 1, - anon_sym_EQ, - STATE(2881), 1, - sym_trait_bounds, - STATE(3179), 1, + STATE(674), 1, + sym_declaration_list, + STATE(3034), 1, sym_where_clause, STATE(2443), 2, sym_line_comment, sym_block_comment, - [75632] = 9, + [75598] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(1133), 1, - sym_enum_variant_list, - STATE(2635), 1, - sym_type_parameters, - STATE(3310), 1, + ACTIONS(5503), 1, + anon_sym_SEMI, + STATE(571), 1, + sym_declaration_list, + STATE(2857), 1, sym_where_clause, STATE(2444), 2, sym_line_comment, sym_block_comment, - [75661] = 9, + [75627] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5505), 1, anon_sym_SEMI, - STATE(1136), 1, + STATE(573), 1, sym_declaration_list, - STATE(3080), 1, + STATE(2899), 1, sym_where_clause, STATE(2445), 2, sym_line_comment, sym_block_comment, - [75690] = 5, + [75656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, + ACTIONS(5509), 1, anon_sym_COMMA, STATE(2446), 3, sym_line_comment, sym_block_comment, aux_sym_where_clause_repeat1, - ACTIONS(5502), 4, + ACTIONS(5507), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [75711] = 6, + [75677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5116), 1, - anon_sym_for, + ACTIONS(4759), 1, + anon_sym_DOT_DOT, STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75734] = 6, + ACTIONS(4757), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75698] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5078), 1, - anon_sym_for, + ACTIONS(5512), 1, + anon_sym_RBRACK, + ACTIONS(4925), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3726), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [75757] = 5, + anon_sym_DASH_GT, + [75721] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5507), 1, - anon_sym_DASH_GT, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5515), 1, + anon_sym_SEMI, + STATE(511), 1, + sym_declaration_list, + STATE(3022), 1, + sym_where_clause, STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75778] = 6, + [75750] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - ACTIONS(5118), 1, + ACTIONS(5083), 1, anon_sym_for, STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3532), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75801] = 9, + [75773] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5509), 1, - anon_sym_GT, - ACTIONS(5511), 1, + ACTIONS(5394), 1, + anon_sym_RBRACK, + ACTIONS(4947), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3002), 1, - sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, STATE(2451), 2, sym_line_comment, sym_block_comment, - [75830] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3682), 2, + ACTIONS(3730), 3, + anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5483), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2452), 2, - sym_line_comment, - sym_block_comment, - [75853] = 9, + [75796] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5513), 1, + ACTIONS(5517), 1, anon_sym_SEMI, - STATE(1179), 1, + STATE(513), 1, sym_declaration_list, - STATE(2882), 1, - sym_where_clause, - STATE(2453), 2, - sym_line_comment, - sym_block_comment, - [75882] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(588), 1, - sym_enum_variant_list, - STATE(2650), 1, - sym_type_parameters, - STATE(3347), 1, - sym_where_clause, - STATE(2454), 2, - sym_line_comment, - sym_block_comment, - [75911] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1144), 1, - sym_field_declaration_list, - STATE(2639), 1, - sym_type_parameters, - STATE(3352), 1, + STATE(2876), 1, sym_where_clause, - STATE(2455), 2, - sym_line_comment, - sym_block_comment, - [75940] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5122), 1, - anon_sym_for, - STATE(2456), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75963] = 9, + [75825] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(777), 1, - sym_field_declaration_list, - STATE(2691), 1, - sym_type_parameters, - STATE(3340), 1, - sym_where_clause, - STATE(2457), 2, - sym_line_comment, - sym_block_comment, - [75992] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, + ACTIONS(5148), 1, anon_sym_COLON, - ACTIONS(5515), 1, - anon_sym_SEMI, - ACTIONS(5517), 1, - anon_sym_EQ, - STATE(3016), 1, + STATE(628), 1, + sym_declaration_list, + STATE(2793), 1, sym_trait_bounds, - STATE(3212), 1, + STATE(3451), 1, sym_where_clause, - STATE(2458), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - [76021] = 4, + [75854] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2459), 2, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(5519), 1, + anon_sym_GT, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(3096), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3532), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76040] = 9, + [75881] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5519), 1, + ACTIONS(5523), 1, anon_sym_SEMI, - STATE(563), 1, + STATE(739), 1, sym_declaration_list, - STATE(3095), 1, + STATE(3007), 1, sym_where_clause, - STATE(2460), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - [76069] = 9, + [75910] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, + ACTIONS(5525), 1, anon_sym_SEMI, - STATE(1312), 1, + STATE(616), 1, sym_declaration_list, - STATE(2956), 1, + STATE(2915), 1, sym_where_clause, - STATE(2461), 2, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [76098] = 5, + [75939] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5523), 1, - anon_sym_DASH_GT, - STATE(2462), 2, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5136), 1, + anon_sym_for, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 5, - anon_sym_COLON, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76119] = 7, + anon_sym_where, + [75962] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(5290), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, + ACTIONS(5306), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2463), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [76144] = 8, + [75987] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5525), 1, - anon_sym_if, - STATE(3740), 1, - sym_label, - STATE(486), 2, - sym_if_expression, - sym_block, - STATE(2464), 2, + ACTIONS(5527), 1, + anon_sym_SEMI, + STATE(662), 1, + sym_declaration_list, + STATE(3031), 1, + sym_where_clause, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [76171] = 5, + [76016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - STATE(2465), 2, + ACTIONS(5290), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5489), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 5, - anon_sym_EQ_GT, + [76041] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3726), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4925), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76192] = 9, + ACTIONS(5512), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2461), 2, + sym_line_comment, + sym_block_comment, + [76064] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, + ACTIONS(5529), 1, anon_sym_SEMI, - STATE(1314), 1, + STATE(528), 1, sym_declaration_list, - STATE(2957), 1, + STATE(2920), 1, sym_where_clause, - STATE(2466), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [76221] = 9, + [76093] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(568), 1, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(530), 1, sym_declaration_list, - STATE(2692), 1, - sym_trait_bounds, - STATE(3256), 1, + STATE(2937), 1, sym_where_clause, - STATE(2467), 2, + STATE(2463), 2, sym_line_comment, sym_block_comment, - [76250] = 5, + [76122] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, - anon_sym_DASH_GT, - STATE(2468), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3666), 5, - anon_sym_COLON, + ACTIONS(3158), 1, anon_sym_PLUS, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5533), 1, anon_sym_GT, + ACTIONS(5535), 1, anon_sym_COMMA, - anon_sym_as, - [76271] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2469), 2, + STATE(2923), 1, + sym_trait_bounds, + STATE(2925), 1, + aux_sym_type_arguments_repeat1, + STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [76290] = 5, + [76151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_DASH_GT, - STATE(2470), 2, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5031), 1, + anon_sym_for, + STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 5, - anon_sym_COLON, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76311] = 9, + anon_sym_where, + [76174] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5533), 1, + ACTIONS(5537), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(532), 1, sym_declaration_list, - STATE(2959), 1, + STATE(3003), 1, sym_where_clause, - STATE(2471), 2, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + [76203] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [76340] = 9, + ACTIONS(3560), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76222] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, + ACTIONS(5539), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(534), 1, sym_declaration_list, - STATE(3130), 1, + STATE(3012), 1, sym_where_clause, - STATE(2472), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [76369] = 9, + [76251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5120), 1, + anon_sym_for, + STATE(2469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76274] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5541), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(700), 1, sym_declaration_list, - STATE(2960), 1, + STATE(2853), 1, sym_where_clause, - STATE(2473), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [76398] = 9, + [76303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5124), 1, + anon_sym_for, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2474), 2, + anon_sym_where, + [76326] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5122), 1, + anon_sym_for, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [76427] = 9, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76349] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5148), 1, anon_sym_COLON, - STATE(731), 1, + STATE(705), 1, sym_declaration_list, - STATE(2604), 1, + STATE(2674), 1, sym_trait_bounds, - STATE(3343), 1, + STATE(3410), 1, sym_where_clause, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + [76378] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5126), 1, + anon_sym_for, + STATE(2474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76401] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5130), 1, + anon_sym_for, STATE(2475), 2, sym_line_comment, sym_block_comment, - [76456] = 4, + ACTIONS(3532), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5543), 1, + anon_sym_DASH_GT, STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(5543), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3734), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [76474] = 8, + anon_sym_as, + [76445] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, ACTIONS(5545), 1, - anon_sym_SEMI, - STATE(706), 1, - sym_block, - STATE(3736), 1, + anon_sym_if, + STATE(3463), 1, sym_label, + STATE(412), 2, + sym_if_expression, + sym_block, STATE(2477), 2, sym_line_comment, sym_block_comment, - [76500] = 7, + [76472] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_COLON_COLON, + ACTIONS(5551), 1, + anon_sym_as, STATE(2478), 2, sym_line_comment, sym_block_comment, - [76524] = 6, + ACTIONS(5547), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76494] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, - anon_sym_PLUS, - ACTIONS(5015), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5551), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5553), 1, + anon_sym_SEMI, + STATE(599), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2479), 2, sym_line_comment, sym_block_comment, - [76546] = 6, + [76520] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_COLON_COLON, - ACTIONS(5558), 1, - anon_sym_as, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5555), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(5554), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76568] = 7, + [76546] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5562), 1, - anon_sym_STAR, - STATE(3027), 1, - sym_use_list, - ACTIONS(5560), 2, - sym_identifier, - sym_super, + ACTIONS(5557), 1, + anon_sym_SEMI, + STATE(1256), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2481), 2, sym_line_comment, sym_block_comment, - [76592] = 6, + [76572] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(5568), 1, - anon_sym_as, + STATE(1298), 1, + sym_parameters, + STATE(2012), 1, + sym_type_arguments, STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76614] = 4, + [76598] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5559), 1, + anon_sym_STAR_SLASH, + ACTIONS(5561), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5563), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5565), 1, + sym__block_comment_content, + STATE(3325), 1, + sym__block_doc_comment_marker, STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76632] = 4, + [76624] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5567), 1, + anon_sym_move, + STATE(1793), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(5570), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76650] = 4, + [76650] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5569), 1, + anon_sym_SEMI, + STATE(667), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(5572), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76668] = 4, + [76676] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5573), 1, + anon_sym_COLON_COLON, + ACTIONS(5575), 1, + anon_sym_as, STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(5574), 5, + ACTIONS(5571), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [76686] = 8, + [76698] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1522), 1, - sym_block, - STATE(3677), 1, - sym_label, STATE(2487), 2, sym_line_comment, sym_block_comment, - [76712] = 4, + ACTIONS(5577), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [76716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -178980,75 +179127,80 @@ static const uint16_t ts_small_parse_table[] = { STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 5, + ACTIONS(5579), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_EQ, - anon_sym_where, - [76730] = 8, + anon_sym_COMMA, + anon_sym_SQUOTE, + [76734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5576), 1, - anon_sym_SEMI, - STATE(550), 1, - sym_block, - STATE(3736), 1, - sym_label, + ACTIONS(5003), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2489), 2, sym_line_comment, sym_block_comment, - [76756] = 6, + ACTIONS(3862), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [76754] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, - ACTIONS(5578), 1, - anon_sym_COLON_COLON, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(5583), 1, + anon_sym_STAR, + STATE(3152), 1, + sym_use_list, + ACTIONS(5581), 2, + sym_identifier, + sym_super, STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76778] = 4, + [76778] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5587), 1, + anon_sym_GT, + ACTIONS(5589), 1, + anon_sym_COMMA, + STATE(3077), 1, + sym_lifetime, STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76796] = 4, + [76804] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(2966), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3209), 1, + sym_trait_bounds, + ACTIONS(5591), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76814] = 4, + [76828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -179056,206 +179208,218 @@ static const uint16_t ts_small_parse_table[] = { STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 5, + ACTIONS(3666), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [76832] = 8, + [76846] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5580), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_block, - STATE(3736), 1, - sym_label, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(1685), 1, + sym_parameters, + STATE(2012), 1, + sym_type_arguments, STATE(2494), 2, sym_line_comment, sym_block_comment, - [76858] = 4, + [76872] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5551), 1, + anon_sym_as, + ACTIONS(5593), 1, + anon_sym_COLON_COLON, STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76876] = 4, + ACTIONS(5547), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76894] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(3459), 1, + sym_trait_bounds, + ACTIONS(5595), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76894] = 4, + [76918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3808), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(5584), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76912] = 8, + ACTIONS(4813), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76938] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5586), 1, - sym_identifier, - ACTIONS(5588), 1, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5477), 1, anon_sym_GT, - ACTIONS(5590), 1, + ACTIONS(5479), 1, anon_sym_COMMA, - STATE(3051), 1, - sym_lifetime, + STATE(3100), 1, + sym_trait_bounds, + STATE(3104), 1, + aux_sym_type_arguments_repeat1, STATE(2498), 2, sym_line_comment, sym_block_comment, - [76938] = 8, + [76964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1433), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3840), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2499), 2, sym_line_comment, sym_block_comment, - [76964] = 4, + ACTIONS(4813), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76984] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5597), 1, + anon_sym_RPAREN, + ACTIONS(5599), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, + ACTIONS(4630), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(5592), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76982] = 4, + [77008] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5601), 1, + anon_sym_SEMI, + STATE(555), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(5594), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77000] = 6, + [77034] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, - ACTIONS(5596), 1, - anon_sym_COLON_COLON, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(5603), 1, + anon_sym_COMMA, + STATE(3016), 1, + aux_sym_parameters_repeat1, + ACTIONS(4630), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77022] = 8, + [77058] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5598), 1, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(5605), 1, anon_sym_SEMI, - STATE(560), 1, - sym_block, - STATE(3736), 1, - sym_label, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(5609), 1, + anon_sym_EQ, + ACTIONS(5611), 1, + anon_sym_else, STATE(2503), 2, sym_line_comment, sym_block_comment, - [77048] = 8, + [77084] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4969), 1, - anon_sym_RPAREN, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5613), 1, + anon_sym_SEMI, + STATE(729), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2504), 2, sym_line_comment, sym_block_comment, - [77074] = 7, + [77110] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5615), 1, + sym_identifier, + ACTIONS(5617), 1, anon_sym_GT, + ACTIONS(5619), 1, anon_sym_COMMA, + STATE(3118), 1, + sym_lifetime, STATE(2505), 2, sym_line_comment, sym_block_comment, - [77098] = 4, + [77136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -179263,444 +179427,425 @@ static const uint16_t ts_small_parse_table[] = { STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(5608), 5, + ACTIONS(5621), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77116] = 8, + [77154] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5610), 1, - anon_sym_move, - STATE(481), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5491), 1, + anon_sym_GT, + ACTIONS(5493), 1, + anon_sym_COMMA, + STATE(2891), 1, + sym_trait_bounds, + STATE(2892), 1, + aux_sym_type_arguments_repeat1, STATE(2507), 2, sym_line_comment, sym_block_comment, - [77142] = 4, + [77180] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5623), 1, + anon_sym_RPAREN, + ACTIONS(5626), 1, + anon_sym_COMMA, + STATE(3024), 1, + aux_sym_parameters_repeat1, + ACTIONS(4630), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77160] = 8, + [77204] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_SEMI, - ACTIONS(5614), 1, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3091), 1, + aux_sym_parameters_repeat1, + ACTIONS(4630), 2, anon_sym_COLON, - ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5618), 1, - anon_sym_EQ, - ACTIONS(5620), 1, - anon_sym_else, STATE(2509), 2, sym_line_comment, sym_block_comment, - [77186] = 5, + [77228] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5631), 1, + anon_sym_EQ, + STATE(2871), 1, + sym_type_parameters, + STATE(3704), 1, + sym_where_clause, STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77206] = 7, + [77254] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5633), 1, + anon_sym_RBRACK, + ACTIONS(3532), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4630), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2511), 2, sym_line_comment, sym_block_comment, - [77230] = 8, + [77276] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5624), 1, + ACTIONS(3862), 1, + anon_sym_PLUS, + ACTIONS(5003), 2, anon_sym_COLON, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(5628), 1, - anon_sym_else, + anon_sym_PIPE, + ACTIONS(5636), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2512), 2, sym_line_comment, sym_block_comment, - [77256] = 8, + [77298] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5630), 1, - sym_identifier, - ACTIONS(5632), 1, - anon_sym_GT, - ACTIONS(5634), 1, - anon_sym_COMMA, - STATE(2863), 1, - sym_lifetime, + ACTIONS(5551), 1, + anon_sym_as, + ACTIONS(5639), 1, + anon_sym_COLON_COLON, STATE(2513), 2, sym_line_comment, sym_block_comment, - [77282] = 8, + ACTIONS(5547), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [77320] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1450), 1, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5641), 1, + anon_sym_SEMI, + STATE(1262), 1, sym_block, - STATE(3677), 1, + STATE(3743), 1, sym_label, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77308] = 8, + [77346] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(1154), 1, - sym_parameters, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(5643), 1, + anon_sym_RPAREN, + ACTIONS(5645), 1, + anon_sym_COLON, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_slice_pattern_repeat1, STATE(2515), 2, sym_line_comment, sym_block_comment, - [77334] = 8, + [77372] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(3532), 1, + anon_sym_PLUS, + ACTIONS(4630), 2, anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, + anon_sym_PIPE, + ACTIONS(5633), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, STATE(2516), 2, sym_line_comment, sym_block_comment, - [77360] = 8, + [77394] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5636), 1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5651), 1, anon_sym_SEMI, - ACTIONS(5638), 1, - anon_sym_COLON, - ACTIONS(5640), 1, - anon_sym_EQ, - ACTIONS(5642), 1, - anon_sym_else, + STATE(604), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2517), 2, sym_line_comment, sym_block_comment, - [77386] = 8, + [77420] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5644), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_block, - STATE(3736), 1, - sym_label, + ACTIONS(5009), 1, + anon_sym_RPAREN, + ACTIONS(5653), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_PIPE, + ACTIONS(5657), 1, + anon_sym_COMMA, + STATE(2896), 1, + aux_sym_closure_parameters_repeat1, STATE(2518), 2, sym_line_comment, sym_block_comment, - [77412] = 8, + [77446] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1904), 1, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5659), 1, + anon_sym_SEMI, + STATE(589), 1, sym_block, - STATE(3741), 1, + STATE(3740), 1, sym_label, STATE(2519), 2, sym_line_comment, sym_block_comment, - [77438] = 8, + [77472] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5416), 1, - anon_sym_GT, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2898), 1, - sym_trait_bounds, - STATE(2899), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3052), 1, + anon_sym_POUND, + ACTIONS(5661), 1, + sym_identifier, + ACTIONS(5663), 1, + sym_integer_literal, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1120), 1, + sym_attribute_item, STATE(2520), 2, sym_line_comment, sym_block_comment, - [77464] = 7, + [77498] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2521), 2, sym_line_comment, sym_block_comment, - [77488] = 8, + ACTIONS(3570), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77516] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5650), 1, + ACTIONS(5636), 1, + anon_sym_RBRACK, + ACTIONS(3862), 2, anon_sym_SEMI, - STATE(1203), 1, - sym_block, - STATE(3739), 1, - sym_label, + anon_sym_PLUS, + ACTIONS(5003), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2522), 2, sym_line_comment, sym_block_comment, - [77514] = 8, + [77538] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1747), 1, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5665), 1, + anon_sym_SEMI, + STATE(551), 1, sym_block, - STATE(3741), 1, + STATE(3740), 1, sym_label, STATE(2523), 2, sym_line_comment, sym_block_comment, - [77540] = 7, + [77564] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2524), 2, sym_line_comment, sym_block_comment, - [77564] = 4, + ACTIONS(5667), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77582] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1908), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77582] = 7, + [77608] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, + ACTIONS(5669), 1, anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(5671), 1, anon_sym_COMMA, - STATE(2935), 1, + STATE(3024), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4630), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2526), 2, sym_line_comment, sym_block_comment, - [77606] = 8, + [77632] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5656), 1, - anon_sym_SEMI, - STATE(1250), 1, - sym_block, - STATE(3739), 1, - sym_label, STATE(2527), 2, sym_line_comment, sym_block_comment, - [77632] = 8, + ACTIONS(3542), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5658), 1, - anon_sym_SEMI, - STATE(498), 1, - sym_block, - STATE(3736), 1, - sym_label, STATE(2528), 2, sym_line_comment, sym_block_comment, - [77658] = 8, + ACTIONS(5507), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [77668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1886), 1, - sym_block, - STATE(3741), 1, - sym_label, STATE(2529), 2, sym_line_comment, sym_block_comment, - [77684] = 8, + ACTIONS(5673), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77686] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2468), 1, - sym_parameters, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5675), 1, + anon_sym_SEMI, + STATE(1290), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2530), 2, sym_line_comment, sym_block_comment, - [77710] = 8, + [77712] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5660), 1, - anon_sym_SEMI, - STATE(1284), 1, - sym_block, - STATE(3739), 1, - sym_label, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5284), 1, + anon_sym_COLON, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2531), 2, sym_line_comment, sym_block_comment, @@ -179709,15 +179854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5662), 1, + ACTIONS(5677), 1, anon_sym_SEMI, - STATE(540), 1, + STATE(769), 1, sym_block, - STATE(3736), 1, + STATE(3740), 1, sym_label, STATE(2532), 2, sym_line_comment, @@ -179727,500 +179872,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5664), 1, + ACTIONS(5679), 1, anon_sym_SEMI, - STATE(1337), 1, + STATE(505), 1, sym_block, - STATE(3739), 1, + STATE(3740), 1, sym_label, STATE(2533), 2, sym_line_comment, sym_block_comment, - [77788] = 8, + [77788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5666), 1, - anon_sym_SEMI, - STATE(1351), 1, - sym_block, - STATE(3739), 1, - sym_label, STATE(2534), 2, sym_line_comment, sym_block_comment, - [77814] = 8, + ACTIONS(3770), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5668), 1, - anon_sym_SEMI, - STATE(1356), 1, - sym_block, - STATE(3739), 1, - sym_label, STATE(2535), 2, sym_line_comment, sym_block_comment, - [77840] = 8, + ACTIONS(5681), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77824] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5670), 1, - anon_sym_SEMI, - STATE(1381), 1, - sym_block, - STATE(3739), 1, - sym_label, STATE(2536), 2, sym_line_comment, sym_block_comment, - [77866] = 8, + ACTIONS(5683), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77842] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_SEMI, - STATE(1389), 1, - sym_block, - STATE(3739), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2429), 1, + sym_parameters, STATE(2537), 2, sym_line_comment, sym_block_comment, - [77892] = 8, + [77868] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(4292), 1, anon_sym_LBRACE, - ACTIONS(5674), 1, - anon_sym_SEMI, - STATE(1399), 1, - sym_block, - STATE(3739), 1, - sym_label, + ACTIONS(5338), 1, + anon_sym_STAR, + STATE(3131), 1, + sym_use_list, + ACTIONS(5336), 2, + sym_identifier, + sym_super, STATE(2538), 2, sym_line_comment, sym_block_comment, - [77918] = 8, + [77892] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5676), 1, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5685), 1, anon_sym_SEMI, - STATE(1404), 1, - sym_block, - STATE(3739), 1, - sym_label, + ACTIONS(5687), 1, + anon_sym_COLON, + ACTIONS(5689), 1, + anon_sym_EQ, + ACTIONS(5691), 1, + anon_sym_else, STATE(2539), 2, sym_line_comment, sym_block_comment, - [77944] = 8, + [77918] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5678), 1, - anon_sym_SEMI, - STATE(1408), 1, - sym_block, - STATE(3739), 1, - sym_label, STATE(2540), 2, sym_line_comment, sym_block_comment, - [77970] = 8, + ACTIONS(5693), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77936] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5680), 1, - anon_sym_move, - STATE(1778), 1, + STATE(1775), 1, sym_block, - STATE(3741), 1, + STATE(3745), 1, sym_label, STATE(2541), 2, sym_line_comment, sym_block_comment, - [77996] = 8, + [77962] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(3209), 1, + sym_trait_bounds, + ACTIONS(5591), 2, anon_sym_GT, - ACTIONS(5686), 1, anon_sym_COMMA, - STATE(2997), 1, - sym_lifetime, STATE(2542), 2, sym_line_comment, sym_block_comment, - [78022] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(1697), 1, - sym_parameters, - STATE(2006), 1, - sym_type_arguments, - STATE(2543), 2, - sym_line_comment, - sym_block_comment, - [78048] = 8, + [77986] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5509), 1, - anon_sym_GT, - ACTIONS(5511), 1, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5695), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - STATE(3002), 1, - sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, + anon_sym_where, + [78004] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5697), 1, + anon_sym_SEMI, + STATE(608), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2544), 2, sym_line_comment, sym_block_comment, - [78074] = 7, + [78030] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5699), 1, + anon_sym_SEMI, + STATE(1349), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2545), 2, sym_line_comment, sym_block_comment, - [78098] = 8, + [78056] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - anon_sym_STAR_SLASH, - ACTIONS(5694), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5696), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5698), 1, - sym__block_comment_content, - STATE(3369), 1, - sym__block_doc_comment_marker, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5701), 1, + anon_sym_move, + STATE(1448), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2546), 2, sym_line_comment, sym_block_comment, - [78124] = 7, + [78082] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(1355), 1, anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(5703), 1, anon_sym_COMMA, - STATE(2846), 1, + STATE(2912), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4630), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78148] = 8, + [78106] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5704), 1, + ACTIONS(4786), 1, + anon_sym_EQ, + ACTIONS(5148), 1, anon_sym_COLON, - ACTIONS(5706), 1, + STATE(3075), 1, + sym_trait_bounds, + ACTIONS(4788), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, STATE(2548), 2, sym_line_comment, sym_block_comment, - [78174] = 8, + [78130] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, - anon_sym_COMMA, - STATE(3024), 1, - sym_trait_bounds, - STATE(3025), 1, - aux_sym_type_arguments_repeat1, STATE(2549), 2, sym_line_comment, sym_block_comment, - [78200] = 8, + ACTIONS(5705), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78148] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5708), 1, + ACTIONS(4945), 1, + anon_sym_PIPE, + ACTIONS(5707), 1, anon_sym_SEMI, - STATE(504), 1, - sym_block, - STATE(3736), 1, - sym_label, + ACTIONS(5709), 1, + anon_sym_COLON, + ACTIONS(5711), 1, + anon_sym_EQ, + ACTIONS(5713), 1, + anon_sym_else, STATE(2550), 2, sym_line_comment, sym_block_comment, - [78226] = 7, + [78174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(5712), 1, - anon_sym_STAR, - STATE(2854), 1, - sym_use_list, - ACTIONS(5710), 2, - sym_identifier, - sym_super, STATE(2551), 2, sym_line_comment, sym_block_comment, - [78250] = 7, + ACTIONS(5715), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - ACTIONS(5312), 2, - sym_identifier, - sym_super, STATE(2552), 2, sym_line_comment, sym_block_comment, - [78274] = 4, + ACTIONS(5717), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78210] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1515), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(5714), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78292] = 8, + [78236] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5718), 1, - sym_integer_literal, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5308), 1, + anon_sym_COLON, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2554), 2, sym_line_comment, sym_block_comment, - [78318] = 5, + [78260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 2, + ACTIONS(4630), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 3, + ACTIONS(3532), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [78338] = 4, + [78280] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5148), 1, + anon_sym_COLON, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(3061), 1, + sym_trait_bounds, + STATE(3070), 1, + aux_sym_type_arguments_repeat1, STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(5720), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78356] = 4, + [78306] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5719), 1, + anon_sym_RPAREN, + ACTIONS(5721), 1, + anon_sym_COMMA, + STATE(2867), 1, + aux_sym_parameters_repeat1, + ACTIONS(4630), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(5722), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78374] = 7, + [78330] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5723), 1, + anon_sym_SEMI, + STATE(1378), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2558), 2, sym_line_comment, sym_block_comment, - [78398] = 8, + [78356] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5726), 1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5725), 1, anon_sym_SEMI, - ACTIONS(5728), 1, - anon_sym_COLON, - ACTIONS(5730), 1, - anon_sym_EQ, - ACTIONS(5732), 1, - anon_sym_else, + STATE(1113), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2559), 2, sym_line_comment, sym_block_comment, - [78424] = 7, + [78382] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5727), 1, + anon_sym_SEMI, + STATE(1139), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2560), 2, sym_line_comment, sym_block_comment, - [78448] = 5, + [78408] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78468] = 4, + ACTIONS(5729), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78426] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180228,45 +180352,49 @@ static const uint16_t ts_small_parse_table[] = { STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(5734), 5, + ACTIONS(3546), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [78486] = 5, + [78444] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4656), 1, anon_sym_COLON_COLON, + ACTIONS(4784), 1, + anon_sym_COLON, + STATE(2012), 1, + sym_type_arguments, + STATE(2488), 1, + sym_trait_bounds, STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78506] = 7, + [78470] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_EQ, - ACTIONS(5152), 1, + ACTIONS(5148), 1, anon_sym_COLON, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(4778), 2, + ACTIONS(5533), 1, anon_sym_GT, + ACTIONS(5535), 1, anon_sym_COMMA, + STATE(2923), 1, + sym_trait_bounds, + STATE(2925), 1, + aux_sym_type_arguments_repeat1, STATE(2564), 2, sym_line_comment, sym_block_comment, - [78530] = 4, + [78496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180274,27 +180402,31 @@ static const uint16_t ts_small_parse_table[] = { STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(5736), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(3374), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - [78548] = 4, + anon_sym_as, + [78514] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1541), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(5738), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78566] = 4, + [78540] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180302,151 +180434,153 @@ static const uint16_t ts_small_parse_table[] = { STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(5740), 5, + ACTIONS(3538), 5, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78584] = 8, + anon_sym_where, + [78558] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5731), 1, anon_sym_SEMI, - STATE(603), 1, + STATE(581), 1, sym_block, - STATE(3736), 1, + STATE(3740), 1, sym_label, STATE(2568), 2, sym_line_comment, sym_block_comment, - [78610] = 8, + [78584] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5160), 1, anon_sym_LBRACE, - ACTIONS(5744), 1, + ACTIONS(5733), 1, anon_sym_SEMI, - STATE(659), 1, + STATE(1148), 1, sym_block, - STATE(3736), 1, + STATE(3743), 1, sym_label, STATE(2569), 2, sym_line_comment, sym_block_comment, - [78636] = 7, + [78610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, - anon_sym_RPAREN, - ACTIONS(5749), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2570), 2, sym_line_comment, sym_block_comment, - [78660] = 6, + ACTIONS(3594), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78628] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5752), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5735), 1, + anon_sym_move, + STATE(472), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2571), 2, sym_line_comment, sym_block_comment, - [78682] = 7, + [78654] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5739), 1, + anon_sym_GT, + ACTIONS(5741), 1, + anon_sym_COMMA, + STATE(3138), 1, + sym_lifetime, STATE(2572), 2, sym_line_comment, sym_block_comment, - [78706] = 8, + [78680] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2567), 1, - sym_trait_bounds, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1856), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2573), 2, sym_line_comment, sym_block_comment, - [78732] = 8, + [78706] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5755), 1, - anon_sym_move, - STATE(1452), 1, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5743), 1, + anon_sym_SEMI, + STATE(1201), 1, sym_block, - STATE(3677), 1, + STATE(3743), 1, sym_label, STATE(2574), 2, sym_line_comment, sym_block_comment, - [78758] = 6, + [78732] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_RBRACK, - ACTIONS(3518), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5745), 1, + anon_sym_EQ, + STATE(3130), 1, + sym_type_parameters, + STATE(3721), 1, + sym_where_clause, STATE(2575), 2, sym_line_comment, sym_block_comment, - [78780] = 4, + [78758] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180454,4406 +180588,4414 @@ static const uint16_t ts_small_parse_table[] = { STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 5, + ACTIONS(5747), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [78798] = 4, + [78776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4292), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + anon_sym_STAR, + STATE(3122), 1, + sym_use_list, + ACTIONS(5749), 2, + sym_identifier, + sym_super, STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78816] = 8, + [78800] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5757), 1, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5753), 1, anon_sym_SEMI, - STATE(531), 1, - sym_block, - STATE(3736), 1, - sym_label, + ACTIONS(5755), 1, + anon_sym_COLON, + ACTIONS(5757), 1, + anon_sym_EQ, + ACTIONS(5759), 1, + anon_sym_else, STATE(2578), 2, sym_line_comment, sym_block_comment, - [78842] = 8, + [78826] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5759), 1, - anon_sym_EQ, - STATE(3150), 1, - sym_type_parameters, - STATE(3718), 1, - sym_where_clause, STATE(2579), 2, sym_line_comment, sym_block_comment, - [78868] = 8, + ACTIONS(5761), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78844] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5761), 1, - anon_sym_EQ, - STATE(2934), 1, - sym_type_parameters, - STATE(3526), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5763), 1, + anon_sym_SEMI, + STATE(1217), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2580), 2, sym_line_comment, sym_block_comment, - [78894] = 6, + [78870] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, - anon_sym_RBRACK, - ACTIONS(3886), 2, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, + anon_sym_LBRACE, + ACTIONS(5765), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(5015), 2, - anon_sym_PIPE, - anon_sym_COMMA, + STATE(1237), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2581), 2, sym_line_comment, sym_block_comment, - [78916] = 8, + [78896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5763), 1, - anon_sym_SEMI, - STATE(596), 1, - sym_block, - STATE(3736), 1, - sym_label, STATE(2582), 2, sym_line_comment, sym_block_comment, - [78942] = 8, + ACTIONS(3718), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78914] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2081), 1, + STATE(2080), 1, sym_parameters, STATE(2583), 2, sym_line_comment, sym_block_comment, - [78968] = 8, + [78940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5765), 1, - anon_sym_SEMI, - STATE(1306), 1, - sym_block, - STATE(3739), 1, - sym_label, STATE(2584), 2, sym_line_comment, sym_block_comment, - [78994] = 7, + ACTIONS(5767), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78958] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3717), 1, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5769), 1, + anon_sym_SEMI, + STATE(537), 1, sym_block, + STATE(3740), 1, + sym_label, STATE(2585), 2, sym_line_comment, sym_block_comment, - [79017] = 7, + [78984] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4869), 1, - anon_sym_for, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1532), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2586), 2, sym_line_comment, sym_block_comment, - [79040] = 4, + [79010] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3588), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4414), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [79057] = 5, - ACTIONS(3), 1, + [79033] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5769), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_SEMI, + STATE(3592), 1, + sym_where_clause, STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(5771), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79076] = 7, + [79056] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5773), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(5775), 1, - sym_super, - STATE(2099), 1, - sym_type_arguments, + anon_sym_EQ, + ACTIONS(5777), 1, + anon_sym_else, STATE(2589), 2, sym_line_comment, sym_block_comment, - [79099] = 5, + [79079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, - anon_sym_COMMA, - ACTIONS(4308), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2590), 3, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + STATE(2590), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79118] = 7, + ACTIONS(4839), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79098] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(5780), 1, - anon_sym_RPAREN, - ACTIONS(5782), 1, - anon_sym_COMMA, - STATE(2971), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5781), 1, + anon_sym_SEMI, + STATE(3602), 1, + sym_where_clause, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79141] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79121] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(400), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1144), 1, + sym_declaration_list, + STATE(3346), 1, + sym_where_clause, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79164] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79144] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(399), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5783), 1, + anon_sym_SEMI, + STATE(3513), 1, + sym_where_clause, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79187] = 5, - ACTIONS(3), 1, + [79167] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_declaration_list, + STATE(3348), 1, + sym_where_clause, STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5786), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79206] = 7, + [79190] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5785), 1, + anon_sym_SEMI, + STATE(3461), 1, + sym_where_clause, STATE(2595), 2, sym_line_comment, sym_block_comment, - [79229] = 7, + [79213] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5788), 1, - anon_sym_RPAREN, - ACTIONS(5790), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1193), 1, + sym_enum_variant_list, + STATE(3355), 1, + sym_where_clause, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79252] = 6, + [79236] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1214), 1, + sym_field_declaration_list, + STATE(3358), 1, + sym_where_clause, STATE(2597), 2, sym_line_comment, sym_block_comment, - [79273] = 7, + [79259] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1457), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2310), 1, + sym_parameters, + STATE(3239), 1, + sym_type_parameters, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79296] = 7, + [79282] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1464), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5787), 1, + sym_identifier, + ACTIONS(5789), 1, + sym_super, + STATE(3600), 1, + sym_type_arguments, STATE(2599), 2, sym_line_comment, sym_block_comment, - [79319] = 6, + [79305] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5796), 1, - anon_sym_DQUOTE, - STATE(2619), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1497), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79340] = 7, + [79328] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5791), 1, + anon_sym_RPAREN, + ACTIONS(5793), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_tuple_type_repeat1, STATE(2601), 2, sym_line_comment, sym_block_comment, - [79363] = 7, + [79351] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3740), 1, - sym_label, + STATE(778), 1, + sym_declaration_list, + STATE(3193), 1, + sym_where_clause, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79386] = 7, + [79374] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1453), 1, + STATE(3570), 1, sym_block, - STATE(3677), 1, + STATE(3680), 1, sym_label, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79409] = 7, - ACTIONS(103), 1, + [79397] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(500), 1, - sym_declaration_list, - STATE(3456), 1, - sym_where_clause, + ACTIONS(5795), 1, + aux_sym_token_repetition_pattern_token1, STATE(2604), 2, sym_line_comment, sym_block_comment, - [79432] = 6, + ACTIONS(5797), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79416] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5799), 1, + anon_sym_DQUOTE, + STATE(2760), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2605), 2, sym_line_comment, sym_block_comment, - [79453] = 7, + [79437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_SEMI, - STATE(3603), 1, - sym_where_clause, STATE(2606), 2, sym_line_comment, sym_block_comment, - [79476] = 7, + ACTIONS(947), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [79454] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3091), 1, + aux_sym_parameters_repeat1, STATE(2607), 2, sym_line_comment, sym_block_comment, - [79499] = 7, + [79477] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, sym_identifier, - STATE(1488), 1, - sym_type_arguments, + ACTIONS(5805), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2608), 2, sym_line_comment, sym_block_comment, - [79522] = 7, + [79500] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5807), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2609), 2, sym_line_comment, sym_block_comment, - [79545] = 6, + [79523] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - STATE(3605), 1, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, + ACTIONS(5811), 1, + anon_sym_for, + STATE(2012), 1, sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, STATE(2610), 2, sym_line_comment, sym_block_comment, - [79566] = 7, + [79546] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - STATE(1486), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5813), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2611), 2, sym_line_comment, sym_block_comment, - [79589] = 7, + [79569] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_delim_token_tree, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5815), 1, + anon_sym_SEMI, + ACTIONS(5817), 1, + anon_sym_EQ, + ACTIONS(5819), 1, + anon_sym_else, STATE(2612), 2, sym_line_comment, sym_block_comment, - [79612] = 7, + [79592] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1489), 1, + STATE(1451), 1, sym_block, - STATE(3677), 1, + STATE(3680), 1, sym_label, STATE(2613), 2, sym_line_comment, sym_block_comment, - [79635] = 7, + [79615] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - STATE(1134), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5821), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2614), 2, sym_line_comment, sym_block_comment, - [79658] = 7, + [79638] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5810), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5823), 1, + anon_sym_SEMI, + STATE(3590), 1, + sym_where_clause, STATE(2615), 2, sym_line_comment, sym_block_comment, - [79681] = 6, + [79661] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5825), 1, + anon_sym_SEMI, + STATE(3591), 1, + sym_where_clause, STATE(2616), 2, sym_line_comment, sym_block_comment, - [79702] = 4, + [79684] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1265), 1, + sym_declaration_list, + STATE(3397), 1, + sym_where_clause, STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(5812), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [79719] = 7, + [79707] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1496), 1, + STATE(1453), 1, sym_block, - STATE(3677), 1, + STATE(3680), 1, sym_label, STATE(2618), 2, sym_line_comment, sym_block_comment, - [79742] = 6, + [79730] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5814), 1, + ACTIONS(5827), 1, anon_sym_DQUOTE, - STATE(2779), 1, + STATE(2659), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5801), 2, sym_string_content, sym_escape_sequence, STATE(2619), 2, sym_line_comment, sym_block_comment, - [79763] = 7, + [79751] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(1497), 1, - sym_delim_token_tree, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5829), 1, + anon_sym_SEMI, + STATE(3621), 1, + sym_where_clause, STATE(2620), 2, sym_line_comment, sym_block_comment, - [79786] = 7, + [79774] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(1616), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1324), 1, + sym_declaration_list, + STATE(3401), 1, + sym_where_clause, STATE(2621), 2, sym_line_comment, sym_block_comment, - [79809] = 7, + [79797] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5818), 1, - anon_sym_SEMI, - STATE(3606), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1449), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2622), 2, sym_line_comment, sym_block_comment, - [79832] = 7, + [79820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(1609), 1, - sym_type_arguments, + ACTIONS(4630), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5831), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2623), 2, sym_line_comment, sym_block_comment, - [79855] = 7, + [79839] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5820), 1, - anon_sym_RPAREN, - ACTIONS(5822), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(2191), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2624), 2, sym_line_comment, sym_block_comment, - [79878] = 7, + [79862] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5824), 1, - anon_sym_RBRACK, - ACTIONS(5826), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2389), 1, + sym_parameters, STATE(2625), 2, sym_line_comment, sym_block_comment, - [79901] = 7, + [79885] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, + ACTIONS(5787), 1, sym_identifier, - STATE(2099), 1, + ACTIONS(5789), 1, + sym_super, + STATE(3774), 1, sym_type_arguments, STATE(2626), 2, sym_line_comment, sym_block_comment, - [79924] = 7, + [79908] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5833), 1, + anon_sym_RPAREN, + ACTIONS(5835), 1, + anon_sym_COMMA, + STATE(3125), 1, + aux_sym_slice_pattern_repeat1, STATE(2627), 2, sym_line_comment, sym_block_comment, - [79947] = 7, + [79931] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5830), 1, - anon_sym_RPAREN, - ACTIONS(5832), 1, - anon_sym_COMMA, - STATE(2855), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2628), 2, sym_line_comment, sym_block_comment, - [79970] = 7, + [79954] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5834), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5837), 1, + anon_sym_SEMI, + STATE(3477), 1, + sym_where_clause, STATE(2629), 2, sym_line_comment, sym_block_comment, - [79993] = 6, + [79977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5647), 1, + anon_sym_PIPE, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80014] = 7, + ACTIONS(5839), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [79996] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(5841), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80037] = 7, + [80019] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1155), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5843), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80060] = 7, + [80042] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1452), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80083] = 7, + [80065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3609), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2634), 2, + ACTIONS(5845), 1, + anon_sym_COMMA, + ACTIONS(5839), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2634), 3, sym_line_comment, sym_block_comment, - [80106] = 7, + aux_sym_slice_pattern_repeat1, + [80084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1158), 1, - sym_enum_variant_list, - STATE(3214), 1, - sym_where_clause, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80129] = 7, + ACTIONS(3374), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [80101] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(4801), 1, + anon_sym_DOT_DOT, + ACTIONS(5848), 1, anon_sym_COLON_COLON, - ACTIONS(5838), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(4803), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2636), 2, sym_line_comment, sym_block_comment, - [80152] = 7, + [80122] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1171), 1, - sym_declaration_list, - STATE(3457), 1, - sym_where_clause, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(3209), 1, + sym_trait_bounds, + ACTIONS(5591), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80175] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80143] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(398), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5850), 1, + anon_sym_SEMI, + STATE(3684), 1, + sym_where_clause, STATE(2638), 2, sym_line_comment, sym_block_comment, - [80198] = 7, + [80166] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - STATE(1177), 1, - sym_field_declaration_list, - STATE(3186), 1, + ACTIONS(5852), 1, + anon_sym_SEMI, + STATE(3632), 1, sym_where_clause, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80221] = 7, + [80189] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3422), 1, anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3605), 1, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, + STATE(1203), 1, sym_type_arguments, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80244] = 7, + [80212] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1451), 1, - sym_block, - STATE(3677), 1, - sym_label, + STATE(716), 1, + sym_field_declaration_list, + STATE(3285), 1, + sym_where_clause, STATE(2641), 2, sym_line_comment, sym_block_comment, - [80267] = 7, + [80235] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(408), 1, + sym_block, + STATE(3463), 1, + sym_label, STATE(2642), 2, sym_line_comment, sym_block_comment, - [80290] = 7, + [80258] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_declaration_list, - STATE(3166), 1, + ACTIONS(5854), 1, + anon_sym_SEMI, + STATE(3700), 1, sym_where_clause, STATE(2643), 2, sym_line_comment, sym_block_comment, - [80313] = 7, + [80281] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, - sym_super, - STATE(2102), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5856), 1, + anon_sym_SEMI, + STATE(3702), 1, + sym_where_clause, STATE(2644), 2, sym_line_comment, sym_block_comment, - [80336] = 6, + [80304] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_declaration_list, + STATE(3426), 1, + sym_where_clause, STATE(2645), 2, sym_line_comment, sym_block_comment, - [80357] = 6, + [80327] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1460), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80378] = 7, + [80350] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80401] = 7, + ACTIONS(5858), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_RPAREN, - ACTIONS(5844), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_slice_pattern_repeat1, - STATE(2648), 2, + ACTIONS(5860), 1, + anon_sym_DQUOTE, + ACTIONS(5862), 2, + sym_string_content, + sym_escape_sequence, + STATE(2648), 3, sym_line_comment, sym_block_comment, - [80424] = 7, + aux_sym_string_literal_repeat1, + [80386] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_RPAREN, - ACTIONS(5848), 1, - anon_sym_COMMA, - STATE(2902), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5312), 1, + anon_sym_LPAREN, + ACTIONS(5314), 1, + anon_sym_LBRACK, + ACTIONS(5318), 1, + anon_sym_LBRACE, + STATE(1461), 1, + sym_delim_token_tree, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80447] = 7, + [80409] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(701), 1, - sym_enum_variant_list, - STATE(3426), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1462), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80470] = 7, + [80432] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1242), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80493] = 5, + [80455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2265), 1, + sym_parameters, + STATE(3310), 1, + sym_type_parameters, STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(5850), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [80512] = 7, + [80478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_SEMI, - ACTIONS(5854), 1, - anon_sym_EQ, - ACTIONS(5856), 1, - anon_sym_else, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80535] = 7, + ACTIONS(5865), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [80497] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3519), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5867), 1, + anon_sym_SEMI, + STATE(3717), 1, + sym_where_clause, STATE(2654), 2, sym_line_comment, sym_block_comment, - [80558] = 7, + [80520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1219), 1, - sym_declaration_list, - STATE(3197), 1, - sym_where_clause, + ACTIONS(3150), 1, + anon_sym_PLUS, STATE(2655), 2, sym_line_comment, sym_block_comment, - [80581] = 7, + ACTIONS(5869), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80539] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5858), 1, - anon_sym_SEMI, - STATE(3699), 1, - sym_where_clause, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(2008), 1, + sym_type_arguments, + STATE(2487), 1, + sym_trait_bounds, STATE(2656), 2, sym_line_comment, sym_block_comment, - [80604] = 7, + [80562] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1230), 1, - sym_declaration_list, - STATE(3202), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1465), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2657), 2, sym_line_comment, sym_block_comment, - [80627] = 6, + [80585] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5871), 1, + anon_sym_LPAREN, + ACTIONS(5873), 1, + anon_sym_LBRACK, + ACTIONS(5875), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_delim_token_tree, STATE(2658), 2, sym_line_comment, sym_block_comment, - [80648] = 7, + [80608] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_enum_variant_list, - STATE(3218), 1, - sym_where_clause, + ACTIONS(5877), 1, + anon_sym_DQUOTE, + STATE(2648), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2659), 2, sym_line_comment, sym_block_comment, - [80671] = 7, + [80629] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5860), 1, - anon_sym_SEMI, - STATE(3745), 1, - sym_where_clause, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(471), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2660), 2, sym_line_comment, sym_block_comment, - [80694] = 7, + [80652] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(1387), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1241), 1, - sym_field_declaration_list, - STATE(3229), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(473), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2661), 2, sym_line_comment, sym_block_comment, - [80717] = 7, + [80675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5862), 1, - anon_sym_SEMI, - STATE(3747), 1, - sym_where_clause, + ACTIONS(5879), 1, + anon_sym_DQUOTE, + STATE(2676), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2662), 2, sym_line_comment, sym_block_comment, - [80740] = 7, + [80696] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1499), 1, + STATE(419), 1, sym_block, - STATE(3677), 1, + STATE(3463), 1, sym_label, STATE(2663), 2, sym_line_comment, sym_block_comment, - [80763] = 7, + [80719] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + ACTIONS(5160), 1, anon_sym_LBRACE, - STATE(574), 1, - sym_enum_variant_list, - STATE(3399), 1, - sym_where_clause, + STATE(2972), 1, + sym_block, + STATE(3743), 1, + sym_label, STATE(2664), 2, sym_line_comment, sym_block_comment, - [80786] = 7, + [80742] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, - STATE(3449), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1797), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2665), 2, sym_line_comment, sym_block_comment, - [80809] = 7, + [80765] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, + ACTIONS(5312), 1, + anon_sym_LPAREN, + ACTIONS(5314), 1, + anon_sym_LBRACK, + ACTIONS(5318), 1, + anon_sym_LBRACE, + STATE(1466), 1, + sym_delim_token_tree, STATE(2666), 2, sym_line_comment, sym_block_comment, - [80832] = 7, + [80788] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5866), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, + ACTIONS(4971), 1, + anon_sym_BANG, + STATE(1666), 1, + sym_type_arguments, STATE(2667), 2, sym_line_comment, sym_block_comment, - [80855] = 7, + [80811] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5881), 1, sym_identifier, - ACTIONS(5868), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(1640), 1, + sym_type_arguments, STATE(2668), 2, sym_line_comment, sym_block_comment, - [80878] = 5, + [80834] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(5870), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80897] = 7, + ACTIONS(4414), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [80851] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5872), 1, - anon_sym_SEMI, - ACTIONS(5874), 1, - anon_sym_EQ, - ACTIONS(5876), 1, - anon_sym_else, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(470), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2670), 2, sym_line_comment, sym_block_comment, - [80920] = 7, + [80874] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5878), 1, - anon_sym_SEMI, - STATE(3724), 1, - sym_where_clause, + ACTIONS(5883), 1, + anon_sym_LPAREN, + ACTIONS(5885), 1, + anon_sym_LBRACK, + ACTIONS(5887), 1, + anon_sym_LBRACE, + STATE(2015), 1, + sym_delim_token_tree, STATE(2671), 2, sym_line_comment, sym_block_comment, - [80943] = 7, + [80897] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5880), 1, - anon_sym_SEMI, - STATE(3752), 1, - sym_where_clause, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(481), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2672), 2, sym_line_comment, sym_block_comment, - [80966] = 7, + [80920] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5882), 1, - anon_sym_SEMI, - STATE(3761), 1, - sym_where_clause, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(457), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2673), 2, sym_line_comment, sym_block_comment, - [80989] = 7, + [80943] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - STATE(1279), 1, + STATE(764), 1, sym_declaration_list, - STATE(3314), 1, + STATE(3406), 1, sym_where_clause, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81012] = 7, + [80966] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5884), 1, - anon_sym_SEMI, - STATE(3487), 1, - sym_where_clause, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(490), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2675), 2, sym_line_comment, sym_block_comment, - [81035] = 7, + [80989] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1293), 1, - sym_declaration_list, - STATE(3327), 1, - sym_where_clause, + ACTIONS(5889), 1, + anon_sym_DQUOTE, + STATE(2648), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81058] = 5, - ACTIONS(3), 1, + [81010] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5886), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5883), 1, + anon_sym_LPAREN, + ACTIONS(5885), 1, + anon_sym_LBRACK, + ACTIONS(5887), 1, + anon_sym_LBRACE, + STATE(2027), 1, + sym_delim_token_tree, STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(5888), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81077] = 7, + [81033] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_declaration_list, - STATE(3313), 1, - sym_where_clause, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(5891), 1, + sym_identifier, + ACTIONS(5893), 1, + sym_super, + STATE(1610), 1, + sym_type_arguments, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81100] = 4, + [81056] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(5891), 1, + sym_identifier, + ACTIONS(5893), 1, + sym_super, + STATE(1612), 1, + sym_type_arguments, STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81117] = 7, + [81079] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5890), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5897), 1, + anon_sym_LT2, + ACTIONS(5899), 1, + sym_super, + STATE(2497), 1, + sym_type_arguments, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81140] = 7, + [81102] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5892), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5897), 1, + anon_sym_LT2, + ACTIONS(5899), 1, + sym_super, + STATE(2499), 1, + sym_type_arguments, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81163] = 5, + [81125] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5901), 1, + anon_sym_RPAREN, + ACTIONS(5903), 1, + anon_sym_COMMA, + STATE(3067), 1, + aux_sym_tuple_type_repeat1, STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81182] = 7, + [81148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5896), 1, - anon_sym_SEMI, - STATE(3545), 1, - sym_where_clause, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81205] = 5, + ACTIONS(5905), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [81167] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5881), 1, + sym_identifier, + STATE(1624), 1, + sym_type_arguments, STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81224] = 5, + [81190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(3150), 1, + anon_sym_PLUS, STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, + ACTIONS(5907), 3, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - [81243] = 5, + anon_sym_COMMA, + [81209] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5909), 1, + sym_identifier, + STATE(3600), 1, + sym_type_arguments, STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81262] = 7, + [81232] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5904), 1, - anon_sym_SEMI, - STATE(3571), 1, - sym_where_clause, + ACTIONS(4147), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_LT2, + STATE(1687), 1, + sym_parameters, + STATE(2008), 1, + sym_type_arguments, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81285] = 7, + [81255] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5906), 1, - anon_sym_SEMI, - STATE(3572), 1, - sym_where_clause, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5909), 1, + sym_identifier, + STATE(3774), 1, + sym_type_arguments, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81308] = 7, + [81278] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_declaration_list, - STATE(3371), 1, - sym_where_clause, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(3459), 1, + sym_trait_bounds, + ACTIONS(5595), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81331] = 7, + [81299] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1387), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3770), 1, + STATE(475), 1, sym_block, + STATE(3744), 1, + sym_label, STATE(2690), 2, sym_line_comment, sym_block_comment, - [81354] = 7, + [81322] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_field_declaration_list, - STATE(3279), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(400), 1, + sym_block, + STATE(3463), 1, + sym_label, STATE(2691), 2, sym_line_comment, sym_block_comment, - [81377] = 7, + [81345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_declaration_list, - STATE(3324), 1, - sym_where_clause, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5911), 1, + anon_sym_RPAREN, + ACTIONS(5913), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_tuple_pattern_repeat1, STATE(2692), 2, sym_line_comment, sym_block_comment, - [81400] = 7, + [81368] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(5908), 1, - anon_sym_SEMI, - ACTIONS(5910), 1, - anon_sym_EQ, - ACTIONS(5912), 1, - anon_sym_else, + ACTIONS(5597), 1, + anon_sym_RPAREN, + ACTIONS(5599), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81423] = 7, + [81391] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_field_declaration_list, - STATE(3248), 1, - sym_where_clause, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2270), 1, + sym_parameters, + STATE(3306), 1, + sym_type_parameters, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81446] = 5, + [81414] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_RBRACK, + ACTIONS(5917), 1, + anon_sym_COMMA, + STATE(3084), 1, + aux_sym_slice_pattern_repeat1, STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(5914), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81465] = 7, + [81437] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5916), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, + ACTIONS(1387), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(491), 1, + sym_block, + STATE(3744), 1, + sym_label, STATE(2696), 2, sym_line_comment, sym_block_comment, - [81488] = 7, + [81460] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5918), 1, + ACTIONS(1359), 1, anon_sym_RPAREN, - ACTIONS(5920), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5603), 1, anon_sym_COMMA, - STATE(3067), 1, - aux_sym_slice_pattern_repeat1, + STATE(3016), 1, + aux_sym_parameters_repeat1, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81511] = 7, + [81483] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2470), 1, - sym_parameters, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5919), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81534] = 7, + [81506] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2283), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5921), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2699), 2, sym_line_comment, sym_block_comment, - [81557] = 7, + [81529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, + ACTIONS(5923), 1, sym_identifier, - STATE(3759), 1, - sym_type_arguments, STATE(2700), 2, sym_line_comment, sym_block_comment, - [81580] = 7, + ACTIONS(5925), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [81548] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(485), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5927), 1, + sym_identifier, + STATE(2102), 1, + sym_type_arguments, STATE(2701), 2, sym_line_comment, sym_block_comment, - [81603] = 7, + [81571] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(490), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, + ACTIONS(5929), 1, + anon_sym_for, + STATE(2012), 1, + sym_type_arguments, STATE(2702), 2, sym_line_comment, sym_block_comment, - [81626] = 6, + [81594] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_DQUOTE, - STATE(2715), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5931), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2703), 2, sym_line_comment, sym_block_comment, - [81647] = 7, + [81617] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2275), 1, - sym_parameters, - STATE(3200), 1, - sym_type_parameters, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5933), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2704), 2, sym_line_comment, sym_block_comment, - [81670] = 7, + [81640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5935), 1, + anon_sym_COMMA, + ACTIONS(4308), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2705), 3, + sym_line_comment, + sym_block_comment, + aux_sym_arguments_repeat1, + [81659] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - STATE(3035), 1, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(339), 1, sym_block, - STATE(3739), 1, + STATE(3463), 1, sym_label, - STATE(2705), 2, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [81693] = 7, + [81682] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1781), 1, + STATE(1795), 1, sym_block, - STATE(3741), 1, + STATE(3745), 1, sym_label, - STATE(2706), 2, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [81716] = 7, + [81705] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2707), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1798), 1, + sym_block, + STATE(3745), 1, + sym_label, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [81739] = 7, + [81728] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(3133), 1, - aux_sym_slice_pattern_repeat1, - STATE(2708), 2, + ACTIONS(5938), 1, + anon_sym_DQUOTE, + STATE(2716), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [81762] = 7, + [81749] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(1387), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(474), 1, + STATE(483), 1, sym_block, - STATE(3740), 1, + STATE(3744), 1, sym_label, - STATE(2709), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [81785] = 5, + [81772] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2710), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1802), 1, + sym_block, + STATE(3745), 1, + sym_label, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [81804] = 7, + [81795] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, + ACTIONS(5940), 1, anon_sym_LPAREN, - ACTIONS(5932), 1, + ACTIONS(5942), 1, anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(5944), 1, anon_sym_LBRACE, - STATE(2020), 1, + STATE(1075), 1, sym_delim_token_tree, - STATE(2711), 2, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [81827] = 7, + [81818] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(475), 1, + STATE(1804), 1, sym_block, - STATE(3740), 1, + STATE(3745), 1, sym_label, - STATE(2712), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [81850] = 7, + [81841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(459), 1, + STATE(1621), 1, sym_block, - STATE(3740), 1, + STATE(3745), 1, sym_label, - STATE(2713), 2, + STATE(2714), 2, sym_line_comment, sym_block_comment, - [81873] = 7, + [81864] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(478), 1, + STATE(1808), 1, sym_block, - STATE(3740), 1, + STATE(3745), 1, sym_label, - STATE(2714), 2, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [81896] = 6, + [81887] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5936), 1, + ACTIONS(5946), 1, anon_sym_DQUOTE, - STATE(2779), 1, + STATE(2648), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5801), 2, sym_string_content, sym_escape_sequence, - STATE(2715), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [81917] = 7, + [81908] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, + ACTIONS(5940), 1, anon_sym_LPAREN, - ACTIONS(5932), 1, + ACTIONS(5942), 1, anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(5944), 1, anon_sym_LBRACE, - STATE(2022), 1, + STATE(1074), 1, sym_delim_token_tree, - STATE(2716), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [81940] = 7, + [81931] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, + ACTIONS(5789), 1, sym_super, - STATE(1633), 1, + ACTIONS(5948), 1, + sym_identifier, + STATE(2102), 1, sym_type_arguments, - STATE(2717), 2, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [81963] = 7, + [81954] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, + ACTIONS(5789), 1, sym_super, - STATE(1636), 1, + ACTIONS(5948), 1, + sym_identifier, + STATE(2107), 1, sym_type_arguments, - STATE(2718), 2, - sym_line_comment, - sym_block_comment, - [81986] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2719), 2, sym_line_comment, sym_block_comment, - [82005] = 7, + [81977] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, sym_super, - ACTIONS(5944), 1, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2561), 1, + STATE(3600), 1, sym_type_arguments, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82028] = 7, + [82000] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, sym_super, - ACTIONS(5944), 1, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2563), 1, + STATE(3774), 1, sym_type_arguments, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82051] = 7, + [82023] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5948), 1, - anon_sym_RPAREN, - ACTIONS(5950), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5927), 1, + sym_identifier, + STATE(2107), 1, + sym_type_arguments, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82074] = 7, + [82046] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(3359), 1, - sym_where_clause, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1826), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82097] = 7, + [82069] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5952), 1, + anon_sym_RPAREN, + ACTIONS(5954), 1, + anon_sym_COMMA, + STATE(3114), 1, + aux_sym_tuple_type_repeat1, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82120] = 7, + [82092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1698), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(4630), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82143] = 7, + [82111] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1832), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2726), 2, sym_line_comment, sym_block_comment, - [82166] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(403), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5958), 1, + anon_sym_COLON_COLON, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82189] = 7, + ACTIONS(4865), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(470), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(5960), 1, + anon_sym_COLON_COLON, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82212] = 7, + ACTIONS(4869), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82172] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3701), 1, - sym_block, + ACTIONS(5962), 1, + anon_sym_DQUOTE, + STATE(2733), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82235] = 7, + [82193] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1837), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82258] = 6, + [82216] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5952), 1, - anon_sym_DQUOTE, - STATE(2597), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(5966), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, + anon_sym_LBRACE, + STATE(2647), 1, + sym_token_tree, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82279] = 5, + [82239] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, - sym_identifier, + ACTIONS(5970), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, + anon_sym_LBRACK, + ACTIONS(5974), 1, + anon_sym_LBRACE, + STATE(1841), 1, + sym_delim_token_tree, STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(5956), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82298] = 7, + [82262] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(489), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(5976), 1, + anon_sym_DQUOTE, + STATE(2648), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82321] = 5, - ACTIONS(3), 1, + [82283] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5970), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, + anon_sym_LBRACK, + ACTIONS(5974), 1, + anon_sym_LBRACE, + STATE(1844), 1, + sym_delim_token_tree, STATE(2734), 2, sym_line_comment, sym_block_comment, - ACTIONS(5960), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82340] = 7, + [82306] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(403), 1, + sym_block, + STATE(3463), 1, + sym_label, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82363] = 7, + [82329] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5978), 1, sym_identifier, - ACTIONS(5962), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(2102), 1, + sym_type_arguments, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82386] = 7, + [82352] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5978), 1, sym_identifier, - ACTIONS(5964), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(2107), 1, + sym_type_arguments, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82409] = 7, + [82375] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_LPAREN, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LBRACE, - STATE(2617), 1, - sym_token_tree, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5950), 1, + sym_identifier, + STATE(3600), 1, + sym_type_arguments, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82432] = 7, + [82398] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(5972), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(3774), 1, + sym_type_arguments, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82455] = 7, + [82421] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5787), 1, sym_identifier, - ACTIONS(5974), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(3600), 1, + sym_type_arguments, STATE(2740), 2, sym_line_comment, sym_block_comment, - [82478] = 7, + [82444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1780), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(5980), 1, + anon_sym_in, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82501] = 7, + ACTIONS(5982), 3, + sym_self, + sym_super, + sym_crate, + [82463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1782), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(5984), 1, + anon_sym_DQUOTE, + STATE(2743), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5801), 2, + sym_string_content, + sym_escape_sequence, STATE(2742), 2, sym_line_comment, sym_block_comment, - [82524] = 6, + [82484] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5976), 1, + ACTIONS(5986), 1, anon_sym_DQUOTE, - STATE(2750), 1, + STATE(2648), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5801), 2, sym_string_content, sym_escape_sequence, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82545] = 7, + [82505] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(3600), 1, + sym_type_arguments, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82568] = 7, + [82528] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1787), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(3774), 1, + sym_type_arguments, STATE(2745), 2, sym_line_comment, sym_block_comment, - [82591] = 7, + [82551] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_delim_token_tree, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5990), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2746), 2, sym_line_comment, sym_block_comment, - [82614] = 7, + [82574] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1789), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5992), 1, + anon_sym_RBRACK, + ACTIONS(5994), 1, + anon_sym_COMMA, + STATE(2945), 1, + aux_sym_slice_pattern_repeat1, STATE(2747), 2, sym_line_comment, sym_block_comment, - [82637] = 7, + [82597] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - STATE(1615), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(5803), 1, + sym_identifier, + ACTIONS(5996), 1, + anon_sym_GT, + STATE(3268), 1, + sym_lifetime, STATE(2748), 2, sym_line_comment, sym_block_comment, - [82660] = 7, + [82620] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1793), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_LT2, + STATE(1299), 1, + sym_parameters, + STATE(2008), 1, + sym_type_arguments, STATE(2749), 2, sym_line_comment, sym_block_comment, - [82683] = 6, - ACTIONS(103), 1, + [82643] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5998), 1, + aux_sym_token_repetition_pattern_token1, STATE(2750), 2, sym_line_comment, sym_block_comment, - [82704] = 7, + ACTIONS(6000), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82662] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_delim_token_tree, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5787), 1, + sym_identifier, + STATE(3774), 1, + sym_type_arguments, STATE(2751), 2, sym_line_comment, sym_block_comment, - [82727] = 7, + [82685] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(397), 1, + sym_block, + STATE(3463), 1, + sym_label, STATE(2752), 2, sym_line_comment, sym_block_comment, - [82750] = 7, + [82708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, + ACTIONS(6002), 1, + anon_sym_COLON_COLON, STATE(2753), 2, sym_line_comment, sym_block_comment, - [82773] = 7, + ACTIONS(4869), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82727] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + STATE(2754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4869), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82746] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5336), 1, sym_super, ACTIONS(5988), 1, sym_identifier, - STATE(3605), 1, + STATE(3600), 1, sym_type_arguments, - STATE(2754), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [82796] = 7, + [82769] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5336), 1, sym_super, ACTIONS(5988), 1, sym_identifier, - STATE(3759), 1, + STATE(3774), 1, sym_type_arguments, - STATE(2755), 2, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [82819] = 7, + [82792] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(1810), 1, + STATE(3484), 1, sym_block, - STATE(3741), 1, + STATE(3680), 1, sym_label, - STATE(2756), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [82842] = 4, + [82815] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2757), 2, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6004), 1, + anon_sym_SEMI, + ACTIONS(6006), 1, + anon_sym_EQ, + ACTIONS(6008), 1, + anon_sym_else, + STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82859] = 7, + [82838] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5471), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1816), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2758), 2, + STATE(612), 1, + sym_enum_variant_list, + STATE(3174), 1, + sym_where_clause, + STATE(2759), 2, sym_line_comment, sym_block_comment, - [82882] = 6, + [82861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5990), 1, + ACTIONS(6010), 1, anon_sym_DQUOTE, - STATE(2763), 1, + STATE(2648), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5801), 2, sym_string_content, sym_escape_sequence, - STATE(2759), 2, - sym_line_comment, - sym_block_comment, - [82903] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1821), 1, - sym_block, - STATE(3741), 1, - sym_label, STATE(2760), 2, sym_line_comment, sym_block_comment, - [82926] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82882] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(421), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1306), 1, + sym_enum_variant_list, + STATE(3237), 1, + sym_where_clause, STATE(2761), 2, sym_line_comment, sym_block_comment, - [82949] = 7, + [82905] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, + ACTIONS(5871), 1, anon_sym_LPAREN, - ACTIONS(5994), 1, + ACTIONS(5873), 1, anon_sym_LBRACK, - ACTIONS(5996), 1, + ACTIONS(5875), 1, anon_sym_LBRACE, - STATE(1826), 1, + STATE(405), 1, sym_delim_token_tree, STATE(2762), 2, sym_line_comment, sym_block_comment, - [82972] = 6, + [82928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5286), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2763), 2, sym_line_comment, sym_block_comment, - [82993] = 7, + [82949] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_delim_token_tree, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(6012), 1, + sym_identifier, + STATE(1433), 1, + sym_type_arguments, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83016] = 7, + [82972] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2301), 1, + sym_parameters, + STATE(3331), 1, + sym_type_parameters, STATE(2765), 2, sym_line_comment, sym_block_comment, - [83039] = 7, + [82995] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5789), 1, sym_super, - ACTIONS(6000), 1, + ACTIONS(5909), 1, sym_identifier, STATE(2102), 1, sym_type_arguments, STATE(2766), 2, sym_line_comment, sym_block_comment, - [83062] = 7, - ACTIONS(103), 1, + [83018] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(6014), 1, + aux_sym_token_repetition_pattern_token1, STATE(2767), 2, sym_line_comment, sym_block_comment, - [83085] = 7, + ACTIONS(6016), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83037] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(6018), 1, + anon_sym_in, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83108] = 5, + ACTIONS(6020), 3, + sym_self, + sym_super, + sym_crate, + [83056] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, + ACTIONS(6022), 1, + anon_sym_LBRACE, + ACTIONS(6024), 1, + anon_sym_for, + ACTIONS(6026), 1, + anon_sym_loop, + ACTIONS(6028), 1, + anon_sym_while, STATE(2769), 2, sym_line_comment, sym_block_comment, - ACTIONS(6002), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [83127] = 6, + [83079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - STATE(2771), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5958), 1, + anon_sym_COLON_COLON, STATE(2770), 2, sym_line_comment, sym_block_comment, - [83148] = 6, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83098] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5960), 1, + anon_sym_COLON_COLON, STATE(2771), 2, sym_line_comment, sym_block_comment, - [83169] = 7, + ACTIONS(4851), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(6002), 1, + anon_sym_COLON_COLON, STATE(2772), 2, sym_line_comment, sym_block_comment, - [83192] = 7, + ACTIONS(4851), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83136] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2773), 2, sym_line_comment, sym_block_comment, - [83215] = 5, + [83157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, - anon_sym_COMMA, - ACTIONS(6002), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2774), 3, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + STATE(2774), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [83234] = 4, + ACTIONS(4851), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83176] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2775), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 4, - anon_sym_COLON, + ACTIONS(3150), 1, anon_sym_PLUS, + ACTIONS(6030), 1, + anon_sym_EQ, + ACTIONS(6032), 2, anon_sym_GT, anon_sym_COMMA, - [83251] = 7, + STATE(2775), 2, + sym_line_comment, + sym_block_comment, + [83197] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1430), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3680), 1, + sym_label, + STATE(3767), 1, + sym_block, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83274] = 5, + [83220] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4887), 1, + anon_sym_for, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(6013), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83293] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83243] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(405), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_declaration_list, + STATE(3254), 1, + sym_where_clause, STATE(2778), 2, sym_line_comment, sym_block_comment, - [83316] = 5, + [83266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6017), 2, - sym_string_content, - sym_escape_sequence, - STATE(2779), 3, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2313), 1, + sym_parameters, + STATE(3361), 1, + sym_type_parameters, + STATE(2779), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [83335] = 7, + [83289] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5312), 1, + ACTIONS(5789), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(5909), 1, sym_identifier, - STATE(3605), 1, + STATE(2107), 1, sym_type_arguments, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83358] = 7, + [83312] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, + anon_sym_RPAREN, + ACTIONS(6036), 1, + anon_sym_COMMA, + STATE(2902), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2781), 2, sym_line_comment, sym_block_comment, - [83381] = 7, + [83335] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6020), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1399), 1, + sym_field_declaration_list, + STATE(3260), 1, + sym_where_clause, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83404] = 7, + [83358] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(3600), 1, sym_type_arguments, + ACTIONS(5336), 2, + sym_identifier, + sym_super, STATE(2783), 2, sym_line_comment, sym_block_comment, - [83427] = 7, + [83379] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3493), 1, - sym_block, - STATE(3677), 1, - sym_label, + STATE(546), 1, + sym_declaration_list, + STATE(3216), 1, + sym_where_clause, STATE(2784), 2, sym_line_comment, sym_block_comment, - [83450] = 6, + [83402] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(417), 1, + sym_block, + STATE(3463), 1, + sym_label, STATE(2785), 2, sym_line_comment, sym_block_comment, - [83471] = 7, + [83425] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - anon_sym_RPAREN, - ACTIONS(6024), 1, - anon_sym_COMMA, - STATE(2998), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3680), 1, + sym_label, + STATE(3760), 1, + sym_block, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83494] = 7, + [83448] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2312), 1, - sym_parameters, - STATE(3321), 1, - sym_type_parameters, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3465), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2787), 2, sym_line_comment, sym_block_comment, - [83517] = 7, + [83471] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6026), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(3500), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83540] = 5, + [83494] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6028), 1, - anon_sym_in, + ACTIONS(4648), 1, + anon_sym_LT2, + STATE(3600), 1, + sym_type_arguments, + ACTIONS(5789), 2, + sym_identifier, + sym_super, STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(6030), 3, - sym_self, - sym_super, - sym_crate, - [83559] = 7, + [83515] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, - ACTIONS(6034), 1, - anon_sym_COMMA, - STATE(3011), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + STATE(3774), 1, + sym_type_arguments, + ACTIONS(5789), 2, + sym_identifier, + sym_super, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83582] = 7, + [83536] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, - ACTIONS(6038), 1, - anon_sym_for, - ACTIONS(6040), 1, - anon_sym_loop, - ACTIONS(6042), 1, - anon_sym_while, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2298), 1, + sym_parameters, + STATE(3377), 1, + sym_type_parameters, STATE(2791), 2, sym_line_comment, sym_block_comment, - [83605] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83559] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5653), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_PIPE, + ACTIONS(5657), 1, + anon_sym_COMMA, + STATE(2896), 1, + aux_sym_closure_parameters_repeat1, STATE(2792), 2, sym_line_comment, sym_block_comment, - [83628] = 7, + [83582] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(6046), 1, - anon_sym_for, - ACTIONS(6048), 1, - anon_sym_loop, - ACTIONS(6050), 1, - anon_sym_while, + STATE(692), 1, + sym_declaration_list, + STATE(3322), 1, + sym_where_clause, STATE(2793), 2, sym_line_comment, sym_block_comment, - [83651] = 5, + [83605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, + ACTIONS(4648), 1, + anon_sym_LT2, + STATE(3774), 1, + sym_type_arguments, + ACTIONS(5336), 2, + sym_identifier, + sym_super, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83670] = 7, + [83626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3510), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(6038), 1, + anon_sym_COLON, STATE(2795), 2, sym_line_comment, sym_block_comment, - [83693] = 5, + ACTIONS(4945), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83645] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3583), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83712] = 5, + [83668] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3584), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83731] = 5, + [83691] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(6012), 1, + sym_identifier, + STATE(1439), 1, + sym_type_arguments, STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83750] = 7, + [83714] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2301), 1, - sym_parameters, - STATE(3353), 1, - sym_type_parameters, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1477), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2799), 2, sym_line_comment, sym_block_comment, - [83773] = 7, + [83737] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3665), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6040), 1, + anon_sym_SEMI, + ACTIONS(6042), 1, + anon_sym_EQ, + ACTIONS(6044), 1, + anon_sym_else, STATE(2800), 2, sym_line_comment, sym_block_comment, - [83796] = 5, + [83760] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6046), 1, + anon_sym_RPAREN, + ACTIONS(6048), 1, + anon_sym_COMMA, + STATE(2931), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83815] = 7, + [83783] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_declaration_list, + STATE(3444), 1, + sym_where_clause, STATE(2802), 2, sym_line_comment, sym_block_comment, - [83838] = 6, + [83806] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3680), 1, + sym_label, + STATE(3766), 1, + sym_block, STATE(2803), 2, sym_line_comment, sym_block_comment, - [83859] = 6, + [83829] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3674), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2804), 2, sym_line_comment, sym_block_comment, - [83880] = 5, + [83852] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3677), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83899] = 7, + [83875] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6054), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5669), 1, + anon_sym_RPAREN, + ACTIONS(5671), 1, + anon_sym_COMMA, + STATE(3024), 1, + aux_sym_parameters_repeat1, STATE(2806), 2, sym_line_comment, sym_block_comment, - [83922] = 7, + [83898] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3550), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6050), 1, + anon_sym_SEMI, + STATE(3468), 1, + sym_where_clause, STATE(2807), 2, sym_line_comment, sym_block_comment, - [83945] = 7, + [83921] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6056), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(3680), 1, + sym_label, + STATE(3709), 1, + sym_block, STATE(2808), 2, sym_line_comment, sym_block_comment, - [83968] = 5, + [83944] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3531), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83987] = 5, + [83967] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3680), 1, + sym_label, + STATE(3720), 1, + sym_block, STATE(2810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84006] = 5, + [83990] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(3532), 1, + sym_block, + STATE(3680), 1, + sym_label, STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84025] = 7, + [84013] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2296), 1, - sym_parameters, - STATE(3366), 1, - sym_type_parameters, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + STATE(1203), 1, + sym_type_arguments, STATE(2812), 2, sym_line_comment, sym_block_comment, - [84048] = 7, + [84036] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2286), 1, - sym_parameters, - STATE(3331), 1, - sym_type_parameters, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 1, + anon_sym_BANG, + STATE(1666), 1, + sym_type_arguments, STATE(2813), 2, sym_line_comment, sym_block_comment, - [84071] = 7, + [84059] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3432), 1, anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3703), 1, + STATE(411), 1, sym_block, + STATE(3463), 1, + sym_label, STATE(2814), 2, sym_line_comment, sym_block_comment, - [84094] = 7, + [84082] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3704), 1, - sym_block, STATE(2815), 2, sym_line_comment, sym_block_comment, - [84117] = 6, + ACTIONS(943), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [84099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4642), 1, + anon_sym_DOT_DOT, + ACTIONS(5290), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2816), 2, sym_line_comment, sym_block_comment, - [84138] = 7, + [84120] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3667), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(6052), 1, + anon_sym_COLON, STATE(2817), 2, sym_line_comment, sym_block_comment, - [84161] = 7, + ACTIONS(4945), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [84139] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5703), 1, + anon_sym_COMMA, + STATE(2912), 1, + aux_sym_parameters_repeat1, STATE(2818), 2, sym_line_comment, sym_block_comment, - [84184] = 7, + [84162] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6054), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3541), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(6056), 1, + anon_sym_for, + ACTIONS(6058), 1, + anon_sym_loop, + ACTIONS(6060), 1, + anon_sym_while, STATE(2819), 2, sym_line_comment, sym_block_comment, - [84207] = 7, + [84185] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3597), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6062), 1, + anon_sym_SEMI, + STATE(3538), 1, + sym_where_clause, STATE(2820), 2, sym_line_comment, sym_block_comment, - [84230] = 7, - ACTIONS(103), 1, + [84208] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3622), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(6064), 1, + aux_sym_token_repetition_pattern_token1, STATE(2821), 2, sym_line_comment, sym_block_comment, - [84253] = 7, + ACTIONS(6066), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1123), 1, + STATE(3600), 1, sym_type_arguments, + ACTIONS(5899), 2, + sym_identifier, + sym_super, STATE(2822), 2, sym_line_comment, sym_block_comment, - [84276] = 7, + [84248] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, + STATE(3774), 1, sym_type_arguments, + ACTIONS(5899), 2, + sym_identifier, + sym_super, STATE(2823), 2, sym_line_comment, sym_block_comment, - [84299] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6058), 1, - anon_sym_EQ, - ACTIONS(6060), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2824), 2, - sym_line_comment, - sym_block_comment, - [84320] = 6, + [84269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_DOT_DOT, - ACTIONS(5354), 1, + ACTIONS(5294), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4644), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2825), 2, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [84341] = 7, + [84290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, + ACTIONS(6068), 1, anon_sym_LBRACE, - ACTIONS(6064), 1, + ACTIONS(6070), 1, anon_sym_for, - ACTIONS(6066), 1, + ACTIONS(6072), 1, anon_sym_loop, - ACTIONS(6068), 1, + ACTIONS(6074), 1, anon_sym_while, + STATE(2825), 2, + sym_line_comment, + sym_block_comment, + [84313] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5643), 1, + anon_sym_RPAREN, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_slice_pattern_repeat1, STATE(2826), 2, sym_line_comment, sym_block_comment, - [84364] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [84336] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(409), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, + ACTIONS(6076), 1, + anon_sym_for, + STATE(2012), 1, + sym_type_arguments, STATE(2827), 2, sym_line_comment, sym_block_comment, - [84387] = 7, + [84359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_delim_token_tree, + ACTIONS(6078), 1, + sym_identifier, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84410] = 6, + ACTIONS(6080), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [84378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6082), 1, + anon_sym_RPAREN, + ACTIONS(6084), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_slice_pattern_repeat1, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84431] = 7, + [84401] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, - anon_sym_for, - ACTIONS(6074), 1, - anon_sym_loop, - ACTIONS(6076), 1, - anon_sym_while, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6086), 1, + anon_sym_RPAREN, + ACTIONS(6088), 1, + anon_sym_COMMA, + STATE(3155), 1, + aux_sym_slice_pattern_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84454] = 7, + [84424] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6078), 1, - anon_sym_SEMI, - STATE(3587), 1, - sym_where_clause, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4913), 1, + anon_sym_for, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, + STATE(2012), 1, + sym_type_arguments, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84477] = 5, + [84447] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - sym_identifier, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym_declaration_list, + STATE(3384), 1, + sym_where_clause, STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84496] = 7, + [84470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2008), 1, - sym_type_arguments, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(5958), 1, + anon_sym_COLON_COLON, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84519] = 7, + ACTIONS(4901), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84489] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4905), 1, + ACTIONS(6090), 1, + anon_sym_LBRACE, + ACTIONS(6092), 1, anon_sym_for, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(6094), 1, + anon_sym_loop, + ACTIONS(6096), 1, + anon_sym_while, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84542] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_in, - STATE(2835), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6086), 3, - sym_self, - sym_super, - sym_crate, - [84561] = 7, + [84512] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(5809), 1, anon_sym_COLON_COLON, - ACTIONS(6088), 1, + ACTIONS(6098), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2836), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [84584] = 7, + [84535] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(5809), 1, anon_sym_COLON_COLON, - ACTIONS(6090), 1, + ACTIONS(6100), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2837), 2, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [84607] = 5, + [84558] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 1, - anon_sym_COLON, - STATE(2838), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4947), 3, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5719), 1, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5721), 1, anon_sym_COMMA, - [84626] = 7, + STATE(2867), 1, + aux_sym_parameters_repeat1, + STATE(2837), 2, + sym_line_comment, + sym_block_comment, + [84581] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(5809), 1, anon_sym_COLON_COLON, - ACTIONS(6094), 1, + ACTIONS(6102), 1, anon_sym_for, - STATE(2006), 1, + STATE(2012), 1, sym_type_arguments, - STATE(2839), 2, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [84649] = 7, + [84604] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(6096), 1, - anon_sym_SEMI, - ACTIONS(6098), 1, - anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_else, - STATE(2840), 2, + ACTIONS(6104), 1, + anon_sym_RPAREN, + ACTIONS(6106), 1, + anon_sym_COMMA, + STATE(3039), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [84672] = 7, + [84627] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(6102), 1, + ACTIONS(6108), 1, anon_sym_SEMI, - STATE(3758), 1, + STATE(3582), 1, sym_where_clause, + STATE(2840), 2, + sym_line_comment, + sym_block_comment, + [84650] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5960), 1, + anon_sym_COLON_COLON, STATE(2841), 2, sym_line_comment, sym_block_comment, - [84695] = 7, + ACTIONS(4839), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1460), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(6002), 1, + anon_sym_COLON_COLON, STATE(2842), 2, sym_line_comment, sym_block_comment, - [84718] = 7, + ACTIONS(4839), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84688] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4648), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, STATE(2008), 1, sym_type_arguments, - STATE(2076), 1, + STATE(2081), 1, sym_parameters, STATE(2843), 2, sym_line_comment, sym_block_comment, - [84741] = 7, + [84711] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_enum_variant_list, + STATE(3205), 1, + sym_where_clause, STATE(2844), 2, sym_line_comment, sym_block_comment, - [84764] = 7, + [84734] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, ACTIONS(5041), 1, anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3577), 1, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(633), 1, + sym_field_declaration_list, + STATE(3197), 1, sym_where_clause, STATE(2845), 2, sym_line_comment, sym_block_comment, - [84787] = 6, + [84757] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4662), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, STATE(2846), 2, sym_line_comment, sym_block_comment, - [84807] = 6, + [84780] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2572), 1, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_RPAREN, ACTIONS(6112), 1, anon_sym_COMMA, - STATE(3041), 1, + STATE(2935), 1, aux_sym_tuple_pattern_repeat1, STATE(2847), 2, sym_line_comment, sym_block_comment, - [84827] = 4, + [84803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6116), 1, + anon_sym_COLON, + ACTIONS(6114), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(6114), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84843] = 6, + [84821] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3120), 1, - anon_sym_RBRACK, - ACTIONS(6116), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6118), 1, + anon_sym_SEMI, + STATE(1352), 1, + sym_declaration_list, STATE(2849), 2, sym_line_comment, sym_block_comment, - [84863] = 6, + [84841] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, + ACTIONS(5116), 1, + anon_sym_LBRACE, ACTIONS(6120), 1, - anon_sym_COMMA, - STATE(2868), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_SEMI, + STATE(1356), 1, + sym_declaration_list, STATE(2850), 2, sym_line_comment, sym_block_comment, - [84883] = 6, + [84861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - ACTIONS(6124), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6122), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2901), 1, - aux_sym_struct_pattern_repeat1, STATE(2851), 2, sym_line_comment, sym_block_comment, - [84903] = 4, + [84879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(901), 1, + anon_sym_RBRACK, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84919] = 6, + [84899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, - anon_sym_RBRACE, - ACTIONS(6128), 1, - anon_sym_COMMA, - STATE(2904), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6124), 1, + anon_sym_SEMI, + STATE(761), 1, + sym_declaration_list, STATE(2853), 2, sym_line_comment, sym_block_comment, - [84939] = 4, + [84919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(6126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(6130), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84955] = 6, + [84937] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_RPAREN, - ACTIONS(6132), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6128), 1, + anon_sym_SEMI, + STATE(1364), 1, + sym_declaration_list, STATE(2855), 2, sym_line_comment, sym_block_comment, - [84975] = 4, + [84957] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6130), 1, + anon_sym_SEMI, + STATE(1366), 1, + sym_declaration_list, STATE(2856), 2, sym_line_comment, sym_block_comment, - ACTIONS(6134), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84991] = 4, + [84977] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6132), 1, + anon_sym_SEMI, + STATE(595), 1, + sym_declaration_list, STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(6136), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85007] = 4, + [84997] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6134), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85023] = 6, + [85017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, STATE(2859), 2, sym_line_comment, sym_block_comment, - [85043] = 4, + ACTIONS(4939), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -184861,119 +185003,122 @@ static const uint16_t ts_small_parse_table[] = { STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, + ACTIONS(4941), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85059] = 4, + [85049] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6136), 1, + anon_sym_SEMI, + ACTIONS(6138), 1, + anon_sym_EQ, STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(6138), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85075] = 6, + [85069] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5368), 1, + anon_sym_RBRACE, ACTIONS(6140), 1, - anon_sym_GT, - ACTIONS(6142), 1, anon_sym_COMMA, - STATE(2910), 1, - aux_sym_use_bounds_repeat1, + STATE(3115), 1, + aux_sym_struct_pattern_repeat1, STATE(2862), 2, sym_line_comment, sym_block_comment, - [85095] = 6, + [85089] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, + ACTIONS(4829), 1, anon_sym_GT, - ACTIONS(6146), 1, + ACTIONS(6142), 1, anon_sym_COMMA, - STATE(2911), 1, - aux_sym_use_bounds_repeat1, + STATE(2969), 1, + aux_sym_type_parameters_repeat1, STATE(2863), 2, sym_line_comment, sym_block_comment, - [85115] = 4, + [85109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5089), 1, + anon_sym_RBRACE, + ACTIONS(6144), 1, + anon_sym_COMMA, + STATE(3054), 1, + aux_sym_field_declaration_list_repeat1, STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(6148), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85131] = 6, + [85129] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6150), 1, - anon_sym_SEMI, - ACTIONS(6152), 1, - anon_sym_EQ, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6146), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(2865), 2, sym_line_comment, sym_block_comment, - [85151] = 6, + [85149] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, - ACTIONS(6156), 1, + ACTIONS(975), 1, + anon_sym_RPAREN, + ACTIONS(6148), 1, anon_sym_COMMA, - STATE(2912), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2866), 2, sym_line_comment, sym_block_comment, - [85171] = 6, + [85169] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6158), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_parameters_repeat1, STATE(2867), 2, sym_line_comment, sym_block_comment, - [85191] = 6, + [85189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6150), 2, anon_sym_RBRACE, - ACTIONS(6160), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, STATE(2868), 2, sym_line_comment, sym_block_comment, - [85211] = 4, + [85207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -184981,33 +185126,35 @@ static const uint16_t ts_small_parse_table[] = { STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, + ACTIONS(4947), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85227] = 4, + [85223] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6152), 1, + anon_sym_SEMI, + STATE(3506), 1, + sym_where_clause, STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, [85243] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_GT, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6154), 1, + anon_sym_EQ, + STATE(3669), 1, + sym_where_clause, STATE(2871), 2, sym_line_comment, sym_block_comment, @@ -185016,42 +185163,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_GT, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(2914), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4153), 1, + anon_sym_LT2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(1666), 1, + sym_type_arguments, STATE(2872), 2, sym_line_comment, sym_block_comment, - [85283] = 4, + [85283] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4829), 1, + anon_sym_GT, + ACTIONS(6142), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_type_parameters_repeat1, STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85299] = 6, + [85303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6164), 1, - anon_sym_SEMI, - STATE(1207), 1, - sym_declaration_list, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3091), 1, + aux_sym_parameters_repeat1, STATE(2874), 2, sym_line_comment, sym_block_comment, - [85319] = 4, + [85323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -185059,938 +185208,934 @@ static const uint16_t ts_small_parse_table[] = { STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, + ACTIONS(4997), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85335] = 5, + [85339] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, - anon_sym_RPAREN, - ACTIONS(6168), 1, - anon_sym_COMMA, - STATE(2876), 3, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_SEMI, + STATE(559), 1, + sym_declaration_list, + STATE(2876), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85353] = 6, + [85359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6171), 1, - anon_sym_SEMI, - ACTIONS(6173), 1, - anon_sym_EQ, STATE(2877), 2, sym_line_comment, sym_block_comment, - [85373] = 6, + ACTIONS(4961), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, - ACTIONS(6177), 1, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(5489), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2919), 1, - aux_sym_field_declaration_list_repeat1, STATE(2878), 2, sym_line_comment, sym_block_comment, - [85393] = 6, + [85393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6179), 1, - anon_sym_SEMI, - STATE(3672), 1, - sym_where_clause, STATE(2879), 2, sym_line_comment, sym_block_comment, - [85413] = 4, + ACTIONS(4963), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85409] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4959), 1, + anon_sym_RBRACE, + ACTIONS(6158), 1, + anon_sym_COMMA, + STATE(2897), 1, + aux_sym_field_initializer_list_repeat1, STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(6181), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [85429] = 6, + [85429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6183), 1, - anon_sym_SEMI, - STATE(3471), 1, - sym_where_clause, STATE(2881), 2, sym_line_comment, sym_block_comment, - [85449] = 6, + ACTIONS(4999), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6185), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, + ACTIONS(5805), 1, + anon_sym_GT, + ACTIONS(6160), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_use_bounds_repeat1, STATE(2882), 2, sym_line_comment, sym_block_comment, - [85469] = 4, + [85465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4784), 1, + anon_sym_COLON, + ACTIONS(5059), 1, + anon_sym_COLON_COLON, + STATE(2487), 1, + sym_trait_bounds, STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(6187), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, [85485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_RBRACE, - ACTIONS(6189), 1, + ACTIONS(6110), 1, + anon_sym_RPAREN, + ACTIONS(6112), 1, anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2935), 1, + aux_sym_tuple_pattern_repeat1, STATE(2884), 2, sym_line_comment, sym_block_comment, - [85505] = 6, + [85505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6191), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_where_clause, STATE(2885), 2, sym_line_comment, sym_block_comment, - [85525] = 4, + ACTIONS(4967), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6162), 1, + anon_sym_SEMI, + ACTIONS(6164), 1, + anon_sym_RBRACK, STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [85541] = 5, + [85541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6193), 2, + ACTIONS(5348), 1, anon_sym_RBRACE, + ACTIONS(6166), 1, anon_sym_COMMA, + STATE(3115), 1, + aux_sym_struct_pattern_repeat1, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85559] = 6, + [85561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5956), 2, anon_sym_RPAREN, - ACTIONS(4292), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [85579] = 6, + [85579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_GT, - ACTIONS(6195), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - [85599] = 6, + ACTIONS(4839), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(3616), 1, - sym_where_clause, + ACTIONS(5807), 1, + anon_sym_GT, + ACTIONS(6168), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_use_bounds_repeat1, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85619] = 6, + [85615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6201), 1, - anon_sym_ref, - ACTIONS(6203), 1, - sym_mutable_specifier, + ACTIONS(1639), 1, + anon_sym_GT, + ACTIONS(6170), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_type_arguments_repeat1, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85639] = 6, + [85635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, - anon_sym_RBRACE, - ACTIONS(6205), 1, + ACTIONS(1639), 1, + anon_sym_GT, + ACTIONS(6170), 1, anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85659] = 5, + [85655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6209), 1, - anon_sym_COLON, - ACTIONS(6207), 2, - anon_sym_RBRACE, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6172), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85677] = 5, + [85673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_GT, - ACTIONS(6211), 1, + ACTIONS(5956), 1, + anon_sym_RPAREN, + ACTIONS(6174), 1, anon_sym_COMMA, STATE(2894), 3, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85695] = 5, + aux_sym_parameters_repeat1, + [85691] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_COLON, - ACTIONS(6214), 2, - anon_sym_RBRACE, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(6177), 1, anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(2895), 2, sym_line_comment, sym_block_comment, - [85713] = 6, + [85711] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RBRACK, - ACTIONS(6218), 1, + ACTIONS(5657), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + ACTIONS(6179), 1, + anon_sym_PIPE, + STATE(2996), 1, + aux_sym_closure_parameters_repeat1, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85733] = 6, + [85731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(6181), 1, anon_sym_RBRACE, - ACTIONS(6222), 1, + ACTIONS(6183), 1, anon_sym_COMMA, - STATE(3057), 1, - aux_sym_struct_pattern_repeat1, - STATE(2897), 2, + STATE(2897), 3, sym_line_comment, sym_block_comment, - [85753] = 6, + aux_sym_field_initializer_list_repeat1, + [85749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6186), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_type_arguments_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [85773] = 6, + [85767] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6188), 1, + anon_sym_SEMI, + STATE(597), 1, + sym_declaration_list, STATE(2899), 2, sym_line_comment, sym_block_comment, - [85793] = 6, + [85787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3128), 1, - anon_sym_RPAREN, - ACTIONS(6226), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + ACTIONS(6190), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + STATE(2948), 1, + aux_sym_enum_variant_list_repeat2, STATE(2900), 2, sym_line_comment, sym_block_comment, - [85813] = 6, + [85807] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RBRACE, - ACTIONS(6228), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(6192), 1, + anon_sym_move, + STATE(226), 1, + sym_closure_parameters, STATE(2901), 2, sym_line_comment, sym_block_comment, - [85833] = 6, + [85827] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3106), 1, + ACTIONS(6194), 1, anon_sym_RPAREN, - ACTIONS(6230), 1, + ACTIONS(6196), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + STATE(3045), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2902), 2, sym_line_comment, sym_block_comment, - [85853] = 6, + [85847] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6232), 1, - anon_sym_SEMI, - STATE(722), 1, - sym_declaration_list, + ACTIONS(5053), 1, + anon_sym_RBRACE, + ACTIONS(6190), 1, + anon_sym_COMMA, + STATE(3149), 1, + aux_sym_enum_variant_list_repeat2, STATE(2903), 2, sym_line_comment, sym_block_comment, - [85873] = 6, + [85867] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6198), 1, + anon_sym_SEMI, + STATE(1150), 1, + sym_declaration_list, STATE(2904), 2, sym_line_comment, sym_block_comment, - [85893] = 6, + [85887] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6236), 1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6200), 1, anon_sym_SEMI, - STATE(3497), 1, - sym_where_clause, + STATE(1152), 1, + sym_declaration_list, STATE(2905), 2, sym_line_comment, sym_block_comment, - [85913] = 6, + [85907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6202), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, STATE(2906), 2, sym_line_comment, sym_block_comment, - [85933] = 6, + [85925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(622), 1, - sym_declaration_list, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(4784), 1, + anon_sym_COLON, + STATE(2487), 1, + sym_trait_bounds, STATE(2907), 2, sym_line_comment, sym_block_comment, - [85953] = 6, + [85945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(6206), 1, + anon_sym_EQ, + ACTIONS(6204), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, STATE(2908), 2, sym_line_comment, sym_block_comment, - [85973] = 6, + [85963] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6240), 1, - sym_mutable_specifier, - ACTIONS(6242), 1, - sym_self, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6208), 1, + anon_sym_SEMI, + STATE(1178), 1, + sym_declaration_list, STATE(2909), 2, sym_line_comment, sym_block_comment, - [85993] = 6, + [85983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_GT, - ACTIONS(6244), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6210), 1, + anon_sym_SEMI, + STATE(1182), 1, + sym_declaration_list, STATE(2910), 2, sym_line_comment, sym_block_comment, - [86013] = 6, + [86003] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_GT, - ACTIONS(6246), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6212), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, STATE(2911), 2, sym_line_comment, sym_block_comment, - [86033] = 6, + [86023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(6214), 1, anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2894), 1, + aux_sym_parameters_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - [86053] = 6, + [86043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, + ACTIONS(951), 1, + anon_sym_RBRACK, + ACTIONS(6216), 1, anon_sym_COMMA, - STATE(2938), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2913), 2, sym_line_comment, sym_block_comment, - [86073] = 6, + [86063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4827), 1, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(6218), 1, anon_sym_GT, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, + STATE(3258), 1, + sym_lifetime, STATE(2914), 2, sym_line_comment, sym_block_comment, - [86093] = 6, + [86083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(6252), 1, + ACTIONS(6220), 1, anon_sym_SEMI, - STATE(1258), 1, + STATE(672), 1, sym_declaration_list, STATE(2915), 2, sym_line_comment, sym_block_comment, - [86113] = 6, + [86103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6254), 1, - anon_sym_SEMI, - STATE(1264), 1, - sym_declaration_list, - STATE(2916), 2, + ACTIONS(6222), 1, + anon_sym_GT, + ACTIONS(6224), 1, + anon_sym_COMMA, + STATE(2916), 3, sym_line_comment, sym_block_comment, - [86133] = 5, + aux_sym_for_lifetimes_repeat1, + [86121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6258), 1, - anon_sym_COLON, - ACTIONS(6256), 2, - anon_sym_RBRACE, + ACTIONS(6172), 1, + anon_sym_RPAREN, + ACTIONS(6227), 1, anon_sym_COMMA, - STATE(2917), 2, + STATE(2917), 3, sym_line_comment, sym_block_comment, - [86151] = 6, + aux_sym_tuple_type_repeat1, + [86139] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(6260), 1, + ACTIONS(6230), 1, anon_sym_SEMI, - ACTIONS(6262), 1, + ACTIONS(6232), 1, anon_sym_EQ, STATE(2918), 2, sym_line_comment, sym_block_comment, - [86171] = 6, + [86159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(6264), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6234), 1, + anon_sym_SEMI, + STATE(1189), 1, + sym_declaration_list, STATE(2919), 2, sym_line_comment, sym_block_comment, - [86191] = 6, + [86179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(6264), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6236), 1, + anon_sym_SEMI, + STATE(567), 1, + sym_declaration_list, STATE(2920), 2, sym_line_comment, sym_block_comment, - [86211] = 4, + [86199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6238), 1, + anon_sym_SEMI, + STATE(1191), 1, + sym_declaration_list, STATE(2921), 2, sym_line_comment, sym_block_comment, - ACTIONS(6266), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86227] = 6, + [86219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6268), 1, - anon_sym_SEMI, - STATE(1419), 1, - sym_declaration_list, STATE(2922), 2, sym_line_comment, sym_block_comment, - [86247] = 5, + ACTIONS(6240), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6270), 2, - anon_sym_RBRACE, + ACTIONS(1635), 1, + anon_sym_GT, + ACTIONS(6242), 1, anon_sym_COMMA, + STATE(3059), 1, + aux_sym_type_arguments_repeat1, STATE(2923), 2, sym_line_comment, sym_block_comment, - [86265] = 4, + [86255] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6244), 1, + anon_sym_SEMI, + STATE(1255), 1, + sym_declaration_list, STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(6272), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86281] = 6, + [86275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6274), 1, - anon_sym_SEMI, - ACTIONS(6276), 1, - anon_sym_EQ, + ACTIONS(1635), 1, + anon_sym_GT, + ACTIONS(6242), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(2925), 2, sym_line_comment, sym_block_comment, - [86301] = 6, + [86295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6278), 1, - anon_sym_SEMI, - STATE(3486), 1, - sym_where_clause, - STATE(2926), 2, + ACTIONS(6246), 1, + anon_sym_GT, + ACTIONS(6248), 1, + anon_sym_COMMA, + STATE(2926), 3, sym_line_comment, sym_block_comment, - [86321] = 6, + aux_sym_use_bounds_repeat1, + [86313] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(6280), 1, - anon_sym_COLON_COLON, - STATE(1832), 1, - sym_field_initializer_list, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6251), 1, + anon_sym_SEMI, + ACTIONS(6253), 1, + anon_sym_EQ, STATE(2927), 2, sym_line_comment, sym_block_comment, - [86341] = 5, + [86333] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6255), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(2928), 2, sym_line_comment, sym_block_comment, - [86359] = 6, + [86353] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RPAREN, - ACTIONS(6284), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6257), 1, + anon_sym_SEMI, + STATE(3527), 1, + sym_where_clause, STATE(2929), 2, sym_line_comment, sym_block_comment, - [86379] = 6, + [86373] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6286), 1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6259), 1, anon_sym_SEMI, - STATE(3755), 1, - sym_where_clause, + STATE(642), 1, + sym_declaration_list, STATE(2930), 2, sym_line_comment, sym_block_comment, - [86399] = 6, + [86393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1613), 1, - anon_sym_GT, - ACTIONS(6288), 1, + ACTIONS(6261), 1, + anon_sym_RPAREN, + ACTIONS(6263), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + STATE(3045), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2931), 2, sym_line_comment, sym_block_comment, - [86419] = 4, + [86413] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + anon_sym_SEMI, + STATE(1230), 1, + sym_declaration_list, STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86435] = 4, + [86433] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, + anon_sym_SEMI, + STATE(1233), 1, + sym_declaration_list, STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86451] = 6, + [86453] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6290), 1, - anon_sym_EQ, - STATE(3511), 1, - sym_where_clause, + ACTIONS(935), 1, + anon_sym_RPAREN, + ACTIONS(4276), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86471] = 6, + [86473] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, + ACTIONS(2046), 1, anon_sym_RPAREN, - ACTIONS(6292), 1, + ACTIONS(6269), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + STATE(3023), 1, + aux_sym_tuple_pattern_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - [86491] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86493] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6294), 1, - anon_sym_move, - STATE(237), 1, - sym_closure_parameters, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86511] = 4, + ACTIONS(6271), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [86509] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6273), 1, + anon_sym_SEMI, + STATE(569), 1, + sym_declaration_list, STATE(2937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86527] = 6, + [86529] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5126), 1, - anon_sym_RBRACE, - ACTIONS(6296), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6275), 1, + anon_sym_SEMI, + ACTIONS(6277), 1, + anon_sym_EQ, STATE(2938), 2, sym_line_comment, sym_block_comment, - [86547] = 6, + [86549] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6298), 1, - anon_sym_SEMI, - STATE(1308), 1, - sym_declaration_list, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(6279), 1, + anon_sym_GT, + ACTIONS(6281), 1, + anon_sym_as, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86567] = 6, + [86569] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6300), 1, - anon_sym_SEMI, - STATE(1310), 1, - sym_declaration_list, STATE(2940), 2, sym_line_comment, sym_block_comment, - [86587] = 5, + ACTIONS(4929), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86585] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, + ACTIONS(4833), 1, + anon_sym_GT, + ACTIONS(6283), 1, anon_sym_COMMA, - STATE(2941), 3, + STATE(2969), 1, + aux_sym_type_parameters_repeat1, + STATE(2941), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, [86605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(6305), 1, + ACTIONS(6285), 1, anon_sym_SEMI, - STATE(1316), 1, + STATE(1425), 1, sym_declaration_list, STATE(2942), 2, sym_line_comment, sym_block_comment, - [86625] = 6, + [86625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, - anon_sym_SEMI, - STATE(1318), 1, - sym_declaration_list, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86645] = 4, + ACTIONS(4869), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -185998,104 +186143,105 @@ static const uint16_t ts_small_parse_table[] = { STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, + ACTIONS(4630), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86661] = 6, + [86657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6309), 1, - anon_sym_SEMI, - ACTIONS(6311), 1, - anon_sym_EQ, + ACTIONS(3132), 1, + anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_COMMA, + STATE(2634), 1, + aux_sym_slice_pattern_repeat1, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86681] = 4, + [86677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3108), 1, + anon_sym_RPAREN, + ACTIONS(6289), 1, + anon_sym_COMMA, + STATE(2634), 1, + aux_sym_slice_pattern_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86697] = 6, + [86697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6291), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86717] = 6, + [86715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, + ACTIONS(6293), 1, anon_sym_RBRACE, - ACTIONS(6313), 1, + ACTIONS(6295), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2948), 2, + STATE(2948), 3, sym_line_comment, sym_block_comment, - [86737] = 5, + aux_sym_enum_variant_list_repeat2, + [86733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_RBRACE, - ACTIONS(6317), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(5831), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2949), 3, + STATE(2949), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86755] = 4, + [86751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6298), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86771] = 6, + [86769] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_RBRACE, - ACTIONS(6320), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(6300), 1, + anon_sym_COLON_COLON, + STATE(1426), 1, + sym_field_initializer_list, STATE(2951), 2, sym_line_comment, sym_block_comment, - [86791] = 4, + [86789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186103,37 +186249,38 @@ static const uint16_t ts_small_parse_table[] = { STATE(2952), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86807] = 6, + ACTIONS(5003), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86805] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6322), 1, - anon_sym_SEMI, - STATE(3713), 1, - sym_where_clause, + ACTIONS(6302), 1, + anon_sym_LPAREN, + ACTIONS(6304), 1, + anon_sym_LBRACK, + ACTIONS(6306), 1, + anon_sym_LBRACE, STATE(2953), 2, sym_line_comment, sym_block_comment, - [86827] = 5, + [86825] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 1, - anon_sym_RBRACE, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2954), 3, + ACTIONS(6308), 1, + anon_sym_LPAREN, + ACTIONS(6310), 1, + anon_sym_LBRACK, + ACTIONS(6312), 1, + anon_sym_LBRACE, + STATE(2954), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, [86845] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, @@ -186142,7 +186289,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 3, + ACTIONS(4935), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, @@ -186151,12 +186298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6329), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_ref, + ACTIONS(6318), 1, + sym_mutable_specifier, STATE(2956), 2, sym_line_comment, sym_block_comment, @@ -186165,946 +186312,935 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6320), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(1318), 1, sym_declaration_list, STATE(2957), 2, sym_line_comment, sym_block_comment, - [86901] = 4, + [86901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6322), 1, + anon_sym_GT, + ACTIONS(6324), 1, + anon_sym_COMMA, + STATE(2863), 1, + aux_sym_type_parameters_repeat1, STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(6333), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86917] = 6, + [86921] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6326), 1, anon_sym_LBRACE, - ACTIONS(6335), 1, - anon_sym_SEMI, - STATE(1367), 1, - sym_declaration_list, + STATE(2008), 1, + sym_type_arguments, STATE(2959), 2, sym_line_comment, sym_block_comment, - [86937] = 6, + [86941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6337), 1, - anon_sym_SEMI, - STATE(1369), 1, - sym_declaration_list, + ACTIONS(6330), 1, + anon_sym_EQ, + ACTIONS(6328), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2960), 2, sym_line_comment, sym_block_comment, - [86957] = 6, + [86959] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6339), 1, - anon_sym_SEMI, - ACTIONS(6341), 1, - anon_sym_EQ, + ACTIONS(5081), 1, + anon_sym_RBRACE, + ACTIONS(6332), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_enum_variant_list_repeat2, STATE(2961), 2, sym_line_comment, sym_block_comment, - [86977] = 6, + [86979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6343), 1, - anon_sym_SEMI, - STATE(1375), 1, - sym_declaration_list, + ACTIONS(6334), 1, + anon_sym_EQ_GT, + ACTIONS(6336), 1, + anon_sym_PIPE, + ACTIONS(6338), 1, + anon_sym_if, STATE(2962), 2, sym_line_comment, sym_block_comment, - [86997] = 6, + [86999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6345), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_declaration_list, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4949), 1, + anon_sym_BANG, + ACTIONS(6340), 1, + sym_identifier, STATE(2963), 2, sym_line_comment, sym_block_comment, - [87017] = 6, + [87019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_SEMI, - STATE(741), 1, - sym_declaration_list, + ACTIONS(5813), 1, + anon_sym_GT, + ACTIONS(6342), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_use_bounds_repeat1, STATE(2964), 2, sym_line_comment, sym_block_comment, - [87037] = 6, + [87039] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(6349), 1, + ACTIONS(6344), 1, anon_sym_SEMI, - ACTIONS(6351), 1, + ACTIONS(6346), 1, anon_sym_EQ, STATE(2965), 2, sym_line_comment, sym_block_comment, - [87057] = 6, + [87059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, - anon_sym_RBRACE, - ACTIONS(6160), 1, + ACTIONS(6348), 1, + anon_sym_GT, + ACTIONS(6350), 1, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2916), 1, + aux_sym_for_lifetimes_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [87077] = 6, + [87079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(6353), 1, + ACTIONS(6352), 1, anon_sym_SEMI, - STATE(1395), 1, + STATE(1339), 1, sym_declaration_list, STATE(2967), 2, sym_line_comment, sym_block_comment, - [87097] = 6, + [87099] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6355), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_declaration_list, + ACTIONS(6354), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, STATE(2968), 2, sym_line_comment, sym_block_comment, - [87117] = 5, + [87119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 1, - anon_sym_RBRACE, - ACTIONS(6359), 1, + ACTIONS(6356), 1, + anon_sym_GT, + ACTIONS(6358), 1, anon_sym_COMMA, STATE(2969), 3, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87135] = 6, + aux_sym_type_parameters_repeat1, + [87137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_declaration_list, + ACTIONS(6361), 1, + anon_sym_RBRACE, + ACTIONS(6363), 1, + anon_sym_COMMA, + STATE(3146), 1, + aux_sym_field_initializer_list_repeat1, STATE(2970), 2, sym_line_comment, sym_block_comment, - [87155] = 6, + [87157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6364), 1, - anon_sym_RPAREN, - ACTIONS(6366), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(2971), 2, sym_line_comment, sym_block_comment, - [87175] = 5, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87173] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6368), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2972), 2, sym_line_comment, sym_block_comment, - [87193] = 5, + ACTIONS(1485), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6370), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2973), 2, sym_line_comment, sym_block_comment, - [87211] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(6365), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87205] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_move, - STATE(252), 1, - sym_closure_parameters, + anon_sym_SLASH_STAR, STATE(2974), 2, sym_line_comment, sym_block_comment, - [87231] = 6, + ACTIONS(5009), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87221] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(5055), 1, + anon_sym_RBRACE, + ACTIONS(6367), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(3054), 1, + aux_sym_field_declaration_list_repeat1, STATE(2975), 2, sym_line_comment, sym_block_comment, - [87251] = 5, + [87241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2976), 2, sym_line_comment, sym_block_comment, - [87269] = 6, + ACTIONS(5021), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87257] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6374), 1, - anon_sym_GT, - ACTIONS(6376), 1, - anon_sym_COMMA, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, STATE(2977), 2, sym_line_comment, sym_block_comment, - [87289] = 6, + ACTIONS(6369), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87273] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, + ACTIONS(5118), 1, + anon_sym_RBRACE, + ACTIONS(6371), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_enum_variant_list_repeat2, STATE(2978), 2, sym_line_comment, sym_block_comment, - [87309] = 6, + [87293] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_RPAREN, - ACTIONS(6378), 1, + ACTIONS(6373), 1, + anon_sym_RBRACE, + ACTIONS(6375), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(2887), 1, + aux_sym_struct_pattern_repeat1, STATE(2979), 2, sym_line_comment, sym_block_comment, - [87329] = 5, + [87313] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(6380), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6377), 1, + anon_sym_SEMI, + STATE(3504), 1, + sym_where_clause, STATE(2980), 2, sym_line_comment, sym_block_comment, - [87347] = 4, + [87333] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5657), 1, + anon_sym_COMMA, + ACTIONS(6379), 1, + anon_sym_PIPE, + STATE(2896), 1, + aux_sym_closure_parameters_repeat1, STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87363] = 6, + [87353] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, - ACTIONS(6384), 1, - anon_sym_COMMA, - STATE(3069), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6381), 1, + anon_sym_SEMI, + STATE(507), 1, + sym_declaration_list, STATE(2982), 2, sym_line_comment, sym_block_comment, - [87383] = 5, + [87373] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5928), 2, - anon_sym_RPAREN, + ACTIONS(5055), 1, + anon_sym_RBRACE, + ACTIONS(6367), 1, anon_sym_COMMA, + STATE(2864), 1, + aux_sym_field_declaration_list_repeat1, STATE(2983), 2, sym_line_comment, sym_block_comment, - [87401] = 6, + [87393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, - [87421] = 6, + ACTIONS(4851), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87409] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6388), 1, - anon_sym_SEMI, - STATE(1139), 1, - sym_declaration_list, + ACTIONS(4831), 1, + anon_sym_GT, + ACTIONS(6383), 1, + anon_sym_COMMA, + STATE(2969), 1, + aux_sym_type_parameters_repeat1, STATE(2985), 2, sym_line_comment, sym_block_comment, - [87441] = 6, + [87429] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6385), 1, + anon_sym_SEMI, + STATE(509), 1, + sym_declaration_list, STATE(2986), 2, sym_line_comment, sym_block_comment, - [87461] = 6, + [87449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6390), 1, - anon_sym_SEMI, - ACTIONS(6392), 1, - anon_sym_RBRACK, STATE(2987), 2, sym_line_comment, sym_block_comment, - [87481] = 6, + ACTIONS(5011), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6387), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2988), 2, sym_line_comment, sym_block_comment, - [87501] = 4, + [87483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1033), 1, + anon_sym_RPAREN, + ACTIONS(4288), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(6394), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87517] = 4, + [87503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6389), 1, + anon_sym_SEMI, + ACTIONS(6391), 1, + anon_sym_EQ, STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87533] = 6, + [87523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3150), 1, anon_sym_PLUS, - ACTIONS(6396), 1, - anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_EQ, + ACTIONS(6393), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87553] = 5, + [87541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87571] = 6, + ACTIONS(5023), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6395), 1, + anon_sym_SEMI, + STATE(1278), 1, + sym_declaration_list, STATE(2993), 2, sym_line_comment, sym_block_comment, - [87591] = 5, + [87577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6402), 2, - anon_sym_RPAREN, + ACTIONS(5118), 1, + anon_sym_RBRACE, + ACTIONS(6371), 1, anon_sym_COMMA, + STATE(2961), 1, + aux_sym_enum_variant_list_repeat2, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87609] = 6, + [87597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5083), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(2995), 2, sym_line_comment, sym_block_comment, - [87629] = 6, + [87617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6404), 1, - anon_sym_GT, - ACTIONS(6406), 1, + ACTIONS(6397), 1, + anon_sym_PIPE, + ACTIONS(6399), 1, anon_sym_COMMA, - STATE(3007), 1, - aux_sym_use_bounds_repeat1, - STATE(2996), 2, + STATE(2996), 3, sym_line_comment, sym_block_comment, - [87649] = 6, + aux_sym_closure_parameters_repeat1, + [87635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, - ACTIONS(6410), 1, - anon_sym_COMMA, - STATE(3008), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6402), 1, + anon_sym_SEMI, + STATE(3522), 1, + sym_where_clause, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87669] = 6, + [87655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - anon_sym_RPAREN, - ACTIONS(6414), 1, + ACTIONS(5821), 1, + anon_sym_GT, + ACTIONS(6404), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2926), 1, + aux_sym_use_bounds_repeat1, STATE(2998), 2, sym_line_comment, sym_block_comment, - [87689] = 5, + [87675] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 1, - anon_sym_RPAREN, - ACTIONS(6416), 1, - anon_sym_COMMA, - STATE(2999), 3, + STATE(2999), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [87707] = 6, + ACTIONS(4931), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87691] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - STATE(3278), 1, - sym_lifetime, STATE(3000), 2, sym_line_comment, sym_block_comment, - [87727] = 6, - ACTIONS(27), 1, + ACTIONS(4957), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [87707] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6419), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, + ACTIONS(6406), 1, + anon_sym_RBRACE, + ACTIONS(6408), 1, + anon_sym_COMMA, + STATE(2975), 1, + aux_sym_field_declaration_list_repeat1, STATE(3001), 2, sym_line_comment, sym_block_comment, - [87747] = 6, + [87727] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6421), 1, + ACTIONS(6410), 1, + anon_sym_RBRACE, + ACTIONS(6412), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_arguments_repeat1, + STATE(3073), 1, + aux_sym_field_declaration_list_repeat1, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87767] = 6, + [87747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6421), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6414), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_declaration_list, STATE(3003), 2, sym_line_comment, sym_block_comment, - [87787] = 5, + [87767] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - anon_sym_RBRACE, - ACTIONS(6425), 1, - anon_sym_COMMA, - STATE(3004), 3, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(5803), 1, + sym_identifier, + STATE(3268), 1, + sym_lifetime, + STATE(3004), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87805] = 6, + [87787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + ACTIONS(6416), 1, + sym_identifier, + ACTIONS(6418), 1, + anon_sym_await, + ACTIONS(6420), 1, + sym_integer_literal, STATE(3005), 2, sym_line_comment, sym_block_comment, - [87825] = 6, + [87807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6422), 1, + anon_sym_SEMI, + STATE(737), 1, + sym_declaration_list, STATE(3006), 2, sym_line_comment, sym_block_comment, - [87845] = 6, + [87827] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5962), 1, - anon_sym_GT, - ACTIONS(6428), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6424), 1, + anon_sym_SEMI, + STATE(515), 1, + sym_declaration_list, STATE(3007), 2, sym_line_comment, sym_block_comment, - [87865] = 6, + [87847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5964), 1, - anon_sym_GT, - ACTIONS(6430), 1, + ACTIONS(6428), 1, + anon_sym_COLON, + ACTIONS(6426), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, STATE(3008), 2, sym_line_comment, sym_block_comment, - [87885] = 6, + [87865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, + ACTIONS(5519), 1, anon_sym_GT, - ACTIONS(6432), 1, + ACTIONS(5521), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + STATE(3096), 1, + aux_sym_type_parameters_repeat1, STATE(3009), 2, sym_line_comment, sym_block_comment, - [87905] = 6, + [87885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, - sym_identifier, - ACTIONS(6436), 1, - anon_sym_await, - ACTIONS(6438), 1, - sym_integer_literal, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6430), 1, + anon_sym_SEMI, + STATE(517), 1, + sym_declaration_list, STATE(3010), 2, sym_line_comment, sym_block_comment, - [87925] = 6, + [87905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3270), 1, - anon_sym_RPAREN, - ACTIONS(6440), 1, + ACTIONS(6432), 1, + anon_sym_RBRACE, + ACTIONS(6434), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + STATE(2880), 1, + aux_sym_field_initializer_list_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - [87945] = 4, + [87925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6436), 1, + anon_sym_SEMI, + STATE(577), 1, + sym_declaration_list, STATE(3012), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87961] = 6, + [87945] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6442), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6438), 1, + anon_sym_SEMI, + STATE(3578), 1, + sym_where_clause, STATE(3013), 2, sym_line_comment, sym_block_comment, - [87981] = 6, + [87965] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4440), 1, - anon_sym_RBRACE, - ACTIONS(6444), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_use_list_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6440), 1, + anon_sym_SEMI, + STATE(3511), 1, + sym_where_clause, STATE(3014), 2, sym_line_comment, sym_block_comment, - [88001] = 6, + [87985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1349), 1, - anon_sym_RPAREN, - ACTIONS(6446), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6442), 1, + anon_sym_SEMI, + ACTIONS(6444), 1, + anon_sym_EQ, STATE(3015), 2, sym_line_comment, sym_block_comment, - [88021] = 6, + [88005] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6448), 1, - anon_sym_SEMI, - STATE(3504), 1, - sym_where_clause, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(6446), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_parameters_repeat1, STATE(3016), 2, sym_line_comment, sym_block_comment, - [88041] = 6, + [88025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(4256), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, STATE(3017), 2, sym_line_comment, sym_block_comment, - [88061] = 6, + ACTIONS(4933), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6450), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6448), 1, anon_sym_SEMI, - STATE(714), 1, - sym_declaration_list, + STATE(3618), 1, + sym_where_clause, STATE(3018), 2, sym_line_comment, sym_block_comment, - [88081] = 4, + [88061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6450), 1, + anon_sym_SEMI, + STATE(1410), 1, + sym_declaration_list, STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(6452), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88097] = 6, + [88081] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RPAREN, - ACTIONS(5822), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(6452), 1, + sym_identifier, + ACTIONS(6454), 1, + anon_sym_ref, + ACTIONS(6456), 1, + sym_mutable_specifier, STATE(3020), 2, sym_line_comment, sym_block_comment, - [88117] = 6, + [88101] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, + ACTIONS(5116), 1, + anon_sym_LBRACE, + ACTIONS(6458), 1, + anon_sym_SEMI, + STATE(1398), 1, + sym_declaration_list, STATE(3021), 2, sym_line_comment, sym_block_comment, - [88137] = 6, + [88121] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(6454), 1, - anon_sym_GT, - ACTIONS(6456), 1, - anon_sym_as, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + anon_sym_SEMI, + STATE(557), 1, + sym_declaration_list, STATE(3022), 2, sym_line_comment, sym_block_comment, - [88157] = 6, + [88141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, + ACTIONS(6291), 1, + anon_sym_RPAREN, + ACTIONS(6462), 1, anon_sym_COMMA, - STATE(3014), 1, - aux_sym_use_list_repeat1, - STATE(3023), 2, + STATE(3023), 3, sym_line_comment, sym_block_comment, - [88177] = 6, + aux_sym_tuple_pattern_repeat1, + [88159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6462), 1, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(5703), 1, anon_sym_COMMA, - STATE(3028), 1, - aux_sym_type_arguments_repeat1, + STATE(2894), 1, + aux_sym_parameters_repeat1, STATE(3024), 2, sym_line_comment, sym_block_comment, - [88197] = 6, + [88179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6462), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, STATE(3025), 2, sym_line_comment, sym_block_comment, - [88217] = 4, + ACTIONS(6465), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88195] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -187112,402 +187248,405 @@ static const uint16_t ts_small_parse_table[] = { STATE(3026), 2, sym_line_comment, sym_block_comment, - ACTIONS(6464), 3, + ACTIONS(6467), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [88233] = 4, + [88211] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6469), 1, + anon_sym_LPAREN, + ACTIONS(6471), 1, + anon_sym_LBRACK, + ACTIONS(6473), 1, + anon_sym_LBRACE, STATE(3027), 2, sym_line_comment, sym_block_comment, - ACTIONS(6466), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88249] = 6, + [88231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_GT, - ACTIONS(6468), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(4987), 1, + anon_sym_LBRACE, + STATE(2008), 1, + sym_type_arguments, STATE(3028), 2, sym_line_comment, sym_block_comment, - [88269] = 6, + [88251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6470), 1, - anon_sym_GT, - STATE(3234), 1, - sym_lifetime, + ACTIONS(4180), 1, + anon_sym_LBRACE, + ACTIONS(6475), 1, + anon_sym_COLON_COLON, + STATE(1791), 1, + sym_field_initializer_list, STATE(3029), 2, sym_line_comment, sym_block_comment, - [88289] = 6, + [88271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(6472), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6477), 1, + anon_sym_SEMI, + ACTIONS(6479), 1, + anon_sym_EQ, STATE(3030), 2, sym_line_comment, sym_block_comment, - [88309] = 6, + [88291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3129), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6481), 1, + anon_sym_SEMI, + STATE(618), 1, + sym_declaration_list, STATE(3031), 2, sym_line_comment, sym_block_comment, - [88329] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_move, - STATE(229), 1, - sym_closure_parameters, STATE(3032), 2, sym_line_comment, sym_block_comment, - [88349] = 5, + ACTIONS(4937), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 1, - anon_sym_GT, - ACTIONS(6478), 1, + ACTIONS(917), 1, + anon_sym_RPAREN, + ACTIONS(6483), 1, anon_sym_COMMA, - STATE(3033), 3, + STATE(2705), 1, + aux_sym_arguments_repeat1, + STATE(3033), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [88367] = 6, + [88347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_GT, - ACTIONS(5492), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6485), 1, + anon_sym_SEMI, + STATE(743), 1, + sym_declaration_list, STATE(3034), 2, sym_line_comment, sym_block_comment, - [88387] = 4, + [88367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6487), 1, + anon_sym_SEMI, + ACTIONS(6489), 1, + anon_sym_RBRACK, STATE(3035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88403] = 6, + [88387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6481), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6491), 1, anon_sym_SEMI, - ACTIONS(6483), 1, - anon_sym_EQ, + STATE(3516), 1, + sym_where_clause, STATE(3036), 2, sym_line_comment, sym_block_comment, - [88423] = 4, + [88407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5076), 1, + anon_sym_RBRACE, + ACTIONS(6493), 1, + anon_sym_COMMA, + STATE(3055), 1, + aux_sym_field_declaration_list_repeat1, STATE(3037), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88439] = 6, + [88427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - sym_identifier, - ACTIONS(6487), 1, - anon_sym_await, - ACTIONS(6489), 1, - sym_integer_literal, + ACTIONS(6497), 1, + anon_sym_COLON, + ACTIONS(6495), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88459] = 6, + [88445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_RBRACK, - ACTIONS(6491), 1, + ACTIONS(6499), 1, + anon_sym_RPAREN, + ACTIONS(6501), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(3045), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3039), 2, sym_line_comment, sym_block_comment, - [88479] = 5, + [88465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6493), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88497] = 5, + ACTIONS(4969), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - anon_sym_RPAREN, - ACTIONS(6495), 1, - anon_sym_COMMA, - STATE(3041), 3, + ACTIONS(3422), 1, + anon_sym_LT2, + ACTIONS(5108), 1, + anon_sym_COLON_COLON, + STATE(1203), 1, + sym_type_arguments, + STATE(3041), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [88515] = 6, + [88501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_declaration_list, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6503), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3042), 2, sym_line_comment, sym_block_comment, - [88535] = 6, + [88519] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6500), 1, - anon_sym_SEMI, - ACTIONS(6502), 1, - anon_sym_RBRACK, + ACTIONS(5669), 1, + anon_sym_RPAREN, + ACTIONS(5671), 1, + anon_sym_COMMA, + STATE(3024), 1, + aux_sym_parameters_repeat1, STATE(3043), 2, sym_line_comment, sym_block_comment, - [88555] = 6, + [88539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6504), 1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6505), 1, anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, + ACTIONS(6507), 1, + anon_sym_EQ, STATE(3044), 2, sym_line_comment, sym_block_comment, - [88575] = 6, + [88559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6506), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3045), 2, + ACTIONS(6509), 1, + anon_sym_RPAREN, + ACTIONS(6511), 1, + anon_sym_COMMA, + STATE(3045), 3, sym_line_comment, sym_block_comment, - [88595] = 4, + aux_sym_ordered_field_declaration_list_repeat1, + [88577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(949), 1, + anon_sym_RBRACK, + ACTIONS(4260), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88611] = 4, + [88597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6514), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3047), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88627] = 6, + [88615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(5288), 1, + anon_sym_RBRACE, + ACTIONS(6516), 1, anon_sym_COMMA, - STATE(2889), 1, - aux_sym_type_arguments_repeat1, + STATE(3115), 1, + aux_sym_struct_pattern_repeat1, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88647] = 6, + [88635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_GT, - ACTIONS(6512), 1, - anon_sym_COMMA, - STATE(3096), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6518), 1, + anon_sym_SEMI, + ACTIONS(6520), 1, + anon_sym_RBRACK, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88667] = 6, + [88655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, + ACTIONS(1651), 1, anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(6522), 1, anon_sym_COMMA, - STATE(2894), 1, + STATE(3065), 1, aux_sym_type_arguments_repeat1, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88687] = 6, + [88675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, - ACTIONS(6516), 1, + ACTIONS(6524), 1, + anon_sym_RBRACE, + ACTIONS(6526), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_use_bounds_repeat1, - STATE(3051), 2, + STATE(3051), 3, sym_line_comment, sym_block_comment, - [88707] = 6, + aux_sym_use_list_repeat1, + [88693] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, + ACTIONS(1027), 1, + anon_sym_RBRACK, + ACTIONS(4248), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88727] = 5, + [88713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6520), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88745] = 6, + ACTIONS(4965), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3138), 1, - anon_sym_RPAREN, - ACTIONS(6522), 1, + ACTIONS(6529), 1, + anon_sym_RBRACE, + ACTIONS(6531), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3054), 2, + STATE(3054), 3, sym_line_comment, sym_block_comment, - [88765] = 5, + aux_sym_field_declaration_list_repeat1, + [88747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6526), 1, - anon_sym_COLON, - ACTIONS(6524), 2, + ACTIONS(5095), 1, anon_sym_RBRACE, + ACTIONS(6534), 1, anon_sym_COMMA, + STATE(3054), 1, + aux_sym_field_declaration_list_repeat1, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88783] = 4, + [88767] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -187515,403 +187654,401 @@ static const uint16_t ts_small_parse_table[] = { STATE(3056), 2, sym_line_comment, sym_block_comment, - ACTIONS(6528), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88799] = 6, + ACTIONS(4923), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88783] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5374), 1, - anon_sym_RBRACE, - ACTIONS(6530), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(6536), 1, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(3057), 2, sym_line_comment, sym_block_comment, - [88819] = 6, + [88803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(6532), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, STATE(3058), 2, sym_line_comment, sym_block_comment, - [88839] = 5, + ACTIONS(4985), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - anon_sym_COLON, - ACTIONS(6534), 2, - anon_sym_RBRACE, + ACTIONS(1653), 1, + anon_sym_GT, + ACTIONS(6538), 1, anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(3059), 2, sym_line_comment, sym_block_comment, - [88857] = 6, + [88839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6538), 1, - anon_sym_LPAREN, - ACTIONS(6540), 1, - anon_sym_LBRACK, - ACTIONS(6542), 1, - anon_sym_LBRACE, STATE(3060), 2, sym_line_comment, sym_block_comment, - [88877] = 6, + ACTIONS(4989), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88855] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6544), 1, - anon_sym_LPAREN, - ACTIONS(6546), 1, - anon_sym_LBRACK, - ACTIONS(6548), 1, - anon_sym_LBRACE, + ACTIONS(1645), 1, + anon_sym_GT, + ACTIONS(6540), 1, + anon_sym_COMMA, + STATE(3050), 1, + aux_sym_type_arguments_repeat1, STATE(3061), 2, sym_line_comment, sym_block_comment, - [88897] = 6, + [88875] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, - ACTIONS(6552), 1, - anon_sym_COMMA, - STATE(2892), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(6542), 1, + anon_sym_move, + STATE(252), 1, + sym_closure_parameters, STATE(3062), 2, sym_line_comment, sym_block_comment, - [88917] = 5, + [88895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_GT, - ACTIONS(6556), 1, - anon_sym_COMMA, - STATE(3063), 3, + STATE(3063), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [88935] = 6, + ACTIONS(4991), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6559), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5653), 1, + anon_sym_COLON, + ACTIONS(6397), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3064), 2, sym_line_comment, sym_block_comment, - [88955] = 4, + [88929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3065), 2, + ACTIONS(5595), 1, + anon_sym_GT, + ACTIONS(6544), 1, + anon_sym_COMMA, + STATE(3065), 3, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88971] = 6, + aux_sym_type_arguments_repeat1, + [88947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_COMMA, - ACTIONS(6561), 1, - anon_sym_PIPE, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, STATE(3066), 2, sym_line_comment, sym_block_comment, - [88991] = 6, + ACTIONS(4995), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88963] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3112), 1, + ACTIONS(3244), 1, anon_sym_RPAREN, - ACTIONS(6563), 1, + ACTIONS(6547), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + STATE(2917), 1, + aux_sym_tuple_type_repeat1, STATE(3067), 2, sym_line_comment, sym_block_comment, - [89011] = 6, + [88983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, + ACTIONS(5911), 1, anon_sym_RPAREN, - ACTIONS(5549), 1, + ACTIONS(5913), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, + STATE(3082), 1, + aux_sym_tuple_pattern_repeat1, STATE(3068), 2, sym_line_comment, sym_block_comment, - [89031] = 6, + [89003] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, - anon_sym_RBRACE, - ACTIONS(6565), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6549), 1, + sym_mutable_specifier, + ACTIONS(6551), 1, + sym_self, STATE(3069), 2, sym_line_comment, sym_block_comment, - [89051] = 5, + [89023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6567), 2, - anon_sym_RPAREN, + ACTIONS(1645), 1, + anon_sym_GT, + ACTIONS(6540), 1, anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(3070), 2, sym_line_comment, sym_block_comment, - [89069] = 6, + [89043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2570), 1, - anon_sym_RPAREN, - ACTIONS(6569), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(6553), 1, + anon_sym_LPAREN, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6557), 1, + anon_sym_LBRACE, STATE(3071), 2, sym_line_comment, sym_block_comment, - [89089] = 5, + [89063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(5597), 1, + anon_sym_RPAREN, + ACTIONS(5599), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, STATE(3072), 2, sym_line_comment, sym_block_comment, - [89107] = 5, + [89083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(5076), 1, + anon_sym_RBRACE, + ACTIONS(6493), 1, + anon_sym_COMMA, + STATE(3054), 1, + aux_sym_field_declaration_list_repeat1, STATE(3073), 2, sym_line_comment, sym_block_comment, - [89125] = 6, + [89103] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6575), 1, - anon_sym_SEMI, - ACTIONS(6577), 1, - anon_sym_EQ, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(5703), 1, + anon_sym_COMMA, + STATE(2912), 1, + aux_sym_parameters_repeat1, STATE(3074), 2, sym_line_comment, sym_block_comment, - [89145] = 5, + [89123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, - anon_sym_RPAREN, - ACTIONS(6579), 1, + ACTIONS(6559), 1, + anon_sym_EQ, + ACTIONS(6561), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3075), 3, + STATE(3075), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [89163] = 4, + [89141] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6563), 1, + anon_sym_GT, + ACTIONS(6565), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_use_bounds_repeat1, STATE(3076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89179] = 4, + [89161] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6567), 1, + anon_sym_GT, + ACTIONS(6569), 1, + anon_sym_COMMA, + STATE(3147), 1, + aux_sym_use_bounds_repeat1, STATE(3077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89195] = 6, + [89181] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6582), 1, - anon_sym_GT, - ACTIONS(6584), 1, + ACTIONS(6573), 1, + anon_sym_COLON, + ACTIONS(6571), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2871), 1, - aux_sym_type_parameters_repeat1, STATE(3078), 2, sym_line_comment, sym_block_comment, - [89215] = 6, + [89199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, STATE(3079), 2, sym_line_comment, sym_block_comment, - [89235] = 6, + ACTIONS(4925), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89215] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6586), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_declaration_list, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4286), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(3080), 2, sym_line_comment, sym_block_comment, - [89255] = 6, + [89235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6588), 1, - anon_sym_SEMI, - STATE(3599), 1, - sym_where_clause, STATE(3081), 2, sym_line_comment, sym_block_comment, - [89275] = 4, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2696), 1, + anon_sym_RPAREN, + ACTIONS(6575), 1, + anon_sym_COMMA, + STATE(3023), 1, + aux_sym_tuple_pattern_repeat1, STATE(3082), 2, sym_line_comment, sym_block_comment, - ACTIONS(6590), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89291] = 6, + [89271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_COMMA, - ACTIONS(6592), 1, - anon_sym_PIPE, - STATE(2941), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5059), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, STATE(3083), 2, sym_line_comment, sym_block_comment, - [89311] = 6, + [89291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, + ACTIONS(3110), 1, + anon_sym_RBRACK, + ACTIONS(6577), 1, anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, + STATE(2634), 1, + aux_sym_slice_pattern_repeat1, STATE(3084), 2, sym_line_comment, sym_block_comment, - [89331] = 6, + [89311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6594), 1, - anon_sym_SEMI, - STATE(3675), 1, - sym_where_clause, + ACTIONS(6579), 1, + anon_sym_GT, + ACTIONS(6581), 1, + anon_sym_COMMA, + STATE(2966), 1, + aux_sym_for_lifetimes_repeat1, STATE(3085), 2, sym_line_comment, sym_block_comment, - [89351] = 4, + [89331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -187919,209 +188056,216 @@ static const uint16_t ts_small_parse_table[] = { STATE(3086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89367] = 6, + ACTIONS(5547), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6596), 1, - anon_sym_SEMI, - ACTIONS(6598), 1, - anon_sym_RBRACK, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6583), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3087), 2, sym_line_comment, sym_block_comment, - [89387] = 6, + [89365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6600), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, + ACTIONS(3114), 1, + anon_sym_RPAREN, + ACTIONS(6585), 1, + anon_sym_COMMA, + STATE(2634), 1, + aux_sym_slice_pattern_repeat1, STATE(3088), 2, sym_line_comment, sym_block_comment, - [89407] = 4, + [89385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(6587), 1, + anon_sym_COLON_COLON, + STATE(1426), 1, + sym_field_initializer_list, STATE(3089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89423] = 6, + [89405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6602), 1, - anon_sym_GT, - STATE(3234), 1, - sym_lifetime, STATE(3090), 2, sym_line_comment, sym_block_comment, - [89443] = 6, + ACTIONS(6589), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89421] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6602), 1, - anon_sym_GT, - ACTIONS(6604), 1, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(6591), 1, anon_sym_COMMA, - STATE(3033), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2894), 1, + aux_sym_parameters_repeat1, STATE(3091), 2, sym_line_comment, sym_block_comment, - [89463] = 4, + [89441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6593), 1, + anon_sym_RBRACE, + ACTIONS(6595), 1, + anon_sym_COMMA, + STATE(3120), 1, + aux_sym_use_list_repeat1, STATE(3092), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89479] = 4, + [89461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6597), 1, + anon_sym_SEMI, + ACTIONS(6599), 1, + anon_sym_EQ, STATE(3093), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89495] = 4, + [89481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6601), 1, + anon_sym_SEMI, + STATE(3489), 1, + sym_where_clause, STATE(3094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89511] = 6, + [89501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6606), 1, - anon_sym_SEMI, - STATE(642), 1, - sym_declaration_list, STATE(3095), 2, sym_line_comment, sym_block_comment, - [89531] = 6, + ACTIONS(6603), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, + ACTIONS(4825), 1, anon_sym_GT, - ACTIONS(6608), 1, + ACTIONS(6605), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + STATE(2969), 1, + aux_sym_type_parameters_repeat1, STATE(3096), 2, sym_line_comment, sym_block_comment, - [89551] = 6, + [89537] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6610), 1, - anon_sym_SEMI, - STATE(3608), 1, - sym_where_clause, + ACTIONS(4825), 1, + anon_sym_GT, + ACTIONS(6605), 1, + anon_sym_COMMA, + STATE(2985), 1, + aux_sym_type_parameters_repeat1, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89571] = 6, + [89557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6056), 1, - anon_sym_GT, - ACTIONS(6612), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6607), 1, + anon_sym_SEMI, + STATE(3529), 1, + sym_where_clause, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89591] = 5, + [89577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6614), 1, - anon_sym_EQ, - ACTIONS(6616), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_SEMI, + STATE(683), 1, + sym_declaration_list, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89609] = 4, + [89597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1647), 1, + anon_sym_GT, + ACTIONS(6611), 1, + anon_sym_COMMA, + STATE(3154), 1, + aux_sym_type_arguments_repeat1, STATE(3100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89625] = 5, + [89617] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6618), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6613), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89643] = 4, + [89637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188129,65 +188273,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(3102), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89659] = 4, + ACTIONS(6615), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [89653] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6617), 1, + anon_sym_RBRACE, + ACTIONS(6619), 1, + anon_sym_COMMA, + STATE(3134), 1, + aux_sym_struct_pattern_repeat1, STATE(3103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89675] = 6, + [89673] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6620), 1, - anon_sym_SEMI, - STATE(710), 1, - sym_declaration_list, + ACTIONS(1647), 1, + anon_sym_GT, + ACTIONS(6611), 1, + anon_sym_COMMA, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89695] = 6, + [89693] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6621), 1, anon_sym_RBRACE, - ACTIONS(6624), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3110), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2862), 1, + aux_sym_struct_pattern_repeat1, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89715] = 6, + [89713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89735] = 4, + ACTIONS(4943), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188195,341 +188339,330 @@ static const uint16_t ts_small_parse_table[] = { STATE(3107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 3, + ACTIONS(4945), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89751] = 4, + [89745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(6625), 1, + anon_sym_SEMI, + STATE(702), 1, + sym_declaration_list, STATE(3108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89767] = 5, + [89765] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_EQ, - ACTIONS(6628), 2, - anon_sym_RBRACE, + ACTIONS(6627), 1, + anon_sym_GT, + ACTIONS(6629), 1, anon_sym_COMMA, + STATE(2964), 1, + aux_sym_use_bounds_repeat1, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89785] = 6, + [89785] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89805] = 6, + ACTIONS(965), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [89801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, - anon_sym_COMMA, - STATE(3143), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(6631), 1, + anon_sym_AMP_AMP, + ACTIONS(4378), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89825] = 6, + [89819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, - ACTIONS(6636), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(5126), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89845] = 6, + [89839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(3252), 1, + anon_sym_RPAREN, + ACTIONS(6633), 1, + anon_sym_COMMA, + STATE(2917), 1, + aux_sym_tuple_type_repeat1, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89865] = 6, + [89859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, + ACTIONS(3262), 1, anon_sym_RPAREN, - ACTIONS(6640), 1, + ACTIONS(6635), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2917), 1, + aux_sym_tuple_type_repeat1, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89885] = 6, + [89879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6642), 1, - anon_sym_EQ_GT, - ACTIONS(6644), 1, - anon_sym_PIPE, - ACTIONS(6646), 1, - anon_sym_if, - STATE(3115), 2, + ACTIONS(6637), 1, + anon_sym_RBRACE, + ACTIONS(6639), 1, + anon_sym_COMMA, + STATE(3115), 3, sym_line_comment, sym_block_comment, - [89905] = 6, + aux_sym_struct_pattern_repeat1, + [89897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6648), 1, - anon_sym_SEMI, - STATE(1185), 1, - sym_declaration_list, STATE(3116), 2, sym_line_comment, sym_block_comment, - [89925] = 6, + ACTIONS(6642), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6644), 1, + anon_sym_SEMI, + STATE(3685), 1, + sym_where_clause, STATE(3117), 2, sym_line_comment, sym_block_comment, - [89945] = 5, + [89933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6650), 2, - anon_sym_RBRACE, + ACTIONS(6646), 1, + anon_sym_GT, + ACTIONS(6648), 1, anon_sym_COMMA, + STATE(2998), 1, + aux_sym_use_bounds_repeat1, STATE(3118), 2, sym_line_comment, sym_block_comment, - [89963] = 6, + [89953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6652), 1, - anon_sym_SEMI, - ACTIONS(6654), 1, - anon_sym_EQ, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(5603), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_parameters_repeat1, STATE(3119), 2, sym_line_comment, sym_block_comment, - [89983] = 6, + [89973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - anon_sym_LPAREN, - ACTIONS(6658), 1, - anon_sym_LBRACK, - ACTIONS(6660), 1, - anon_sym_LBRACE, + ACTIONS(4486), 1, + anon_sym_RBRACE, + ACTIONS(6650), 1, + anon_sym_COMMA, + STATE(3051), 1, + aux_sym_use_list_repeat1, STATE(3120), 2, sym_line_comment, sym_block_comment, - [90003] = 5, + [89993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6662), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(3121), 2, sym_line_comment, sym_block_comment, - [90021] = 6, + ACTIONS(6652), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, - anon_sym_ref, - ACTIONS(6668), 1, - sym_mutable_specifier, STATE(3122), 2, sym_line_comment, sym_block_comment, - [90041] = 6, + ACTIONS(6654), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4979), 1, + ACTIONS(6631), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 2, anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, + anon_sym_SQUOTE, STATE(3123), 2, sym_line_comment, sym_block_comment, - [90061] = 6, + [90043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LBRACK, - ACTIONS(6674), 1, - anon_sym_LBRACE, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6658), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(3124), 2, sym_line_comment, sym_block_comment, - [90081] = 6, + [90063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(6676), 1, - sym_identifier, + ACTIONS(3122), 1, + anon_sym_RPAREN, + ACTIONS(6660), 1, + anon_sym_COMMA, + STATE(2634), 1, + aux_sym_slice_pattern_repeat1, STATE(3125), 2, sym_line_comment, sym_block_comment, - [90101] = 6, + [90083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6678), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_declaration_list, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6662), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(3126), 2, sym_line_comment, sym_block_comment, - [90121] = 6, + [90103] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6680), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_declaration_list, STATE(3127), 2, sym_line_comment, sym_block_comment, - [90141] = 5, + ACTIONS(6664), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - anon_sym_GT, - ACTIONS(6684), 1, + ACTIONS(5719), 1, + anon_sym_RPAREN, + ACTIONS(5721), 1, anon_sym_COMMA, - STATE(3128), 3, + STATE(2867), 1, + aux_sym_parameters_repeat1, + STATE(3128), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [90159] = 6, + [90139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_GT, - ACTIONS(6687), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, STATE(3129), 2, sym_line_comment, sym_block_comment, - [90179] = 6, + ACTIONS(6666), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6689), 1, - anon_sym_SEMI, - STATE(613), 1, - sym_declaration_list, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6668), 1, + anon_sym_EQ, + STATE(3731), 1, + sym_where_clause, STATE(3130), 2, sym_line_comment, sym_block_comment, - [90199] = 6, + [90175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_SEMI, - STATE(519), 1, - sym_declaration_list, STATE(3131), 2, sym_line_comment, sym_block_comment, - [90219] = 4, + ACTIONS(6670), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90191] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188537,272 +188670,274 @@ static const uint16_t ts_small_parse_table[] = { STATE(3132), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90235] = 6, + ACTIONS(6672), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3110), 1, - anon_sym_RBRACK, - ACTIONS(6693), 1, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(5603), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + STATE(3016), 1, + aux_sym_parameters_repeat1, STATE(3133), 2, sym_line_comment, sym_block_comment, - [90255] = 5, + [90227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, + ACTIONS(5296), 1, anon_sym_RBRACE, - ACTIONS(6697), 1, + ACTIONS(6674), 1, anon_sym_COMMA, - STATE(3134), 3, + STATE(3115), 1, + aux_sym_struct_pattern_repeat1, + STATE(3134), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [90273] = 6, + [90247] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6700), 1, - anon_sym_SEMI, - STATE(525), 1, - sym_declaration_list, + ACTIONS(4648), 1, + anon_sym_LT2, + ACTIONS(6676), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, STATE(3135), 2, sym_line_comment, sym_block_comment, - [90293] = 6, + [90267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6678), 1, + anon_sym_SEMI, + STATE(3694), 1, + sym_where_clause, STATE(3136), 2, sym_line_comment, sym_block_comment, - [90313] = 6, + [90287] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6702), 1, - anon_sym_SEMI, - STATE(620), 1, - sym_declaration_list, + ACTIONS(6680), 1, + anon_sym_GT, + ACTIONS(6682), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_use_bounds_repeat1, STATE(3137), 2, sym_line_comment, sym_block_comment, - [90333] = 5, + [90307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6704), 2, - anon_sym_RBRACE, + ACTIONS(6684), 1, + anon_sym_GT, + ACTIONS(6686), 1, anon_sym_COMMA, + STATE(2890), 1, + aux_sym_use_bounds_repeat1, STATE(3138), 2, sym_line_comment, sym_block_comment, - [90351] = 6, + [90327] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(6688), 1, + anon_sym_move, + STATE(246), 1, + sym_closure_parameters, STATE(3139), 2, sym_line_comment, sym_block_comment, - [90371] = 4, + [90347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5919), 1, + anon_sym_GT, + ACTIONS(6690), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_use_bounds_repeat1, STATE(3140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90387] = 6, + [90367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6706), 1, - anon_sym_SEMI, - STATE(527), 1, - sym_declaration_list, + ACTIONS(6694), 1, + anon_sym_COLON, + ACTIONS(6692), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3141), 2, sym_line_comment, sym_block_comment, - [90407] = 5, + [90385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6710), 1, - anon_sym_EQ, - ACTIONS(6708), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3142), 2, sym_line_comment, sym_block_comment, - [90425] = 6, + ACTIONS(6696), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90401] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_RBRACE, - ACTIONS(6712), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(6698), 1, + sym_identifier, + ACTIONS(6700), 1, + anon_sym_ref, + ACTIONS(6702), 1, + sym_mutable_specifier, STATE(3143), 2, sym_line_comment, sym_block_comment, - [90445] = 6, + [90421] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6704), 1, + anon_sym_SEMI, + ACTIONS(6706), 1, + anon_sym_EQ, STATE(3144), 2, sym_line_comment, sym_block_comment, - [90465] = 6, + [90441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - ACTIONS(6714), 1, + ACTIONS(6708), 1, anon_sym_SEMI, - STATE(765), 1, + STATE(1170), 1, sym_declaration_list, STATE(3145), 2, sym_line_comment, sym_block_comment, - [90485] = 6, + [90461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_SEMI, - STATE(630), 1, - sym_declaration_list, + ACTIONS(4993), 1, + anon_sym_RBRACE, + ACTIONS(6710), 1, + anon_sym_COMMA, + STATE(2897), 1, + aux_sym_field_initializer_list_repeat1, STATE(3146), 2, sym_line_comment, sym_block_comment, - [90505] = 6, + [90481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6718), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5921), 1, + anon_sym_GT, + ACTIONS(6712), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_use_bounds_repeat1, STATE(3147), 2, sym_line_comment, sym_block_comment, - [90525] = 6, + [90501] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6720), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(6714), 1, + anon_sym_RBRACE, + ACTIONS(6716), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_enum_variant_list_repeat2, STATE(3148), 2, sym_line_comment, sym_block_comment, - [90545] = 6, + [90521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6722), 1, - anon_sym_SEMI, - ACTIONS(6724), 1, - anon_sym_EQ, + ACTIONS(5087), 1, + anon_sym_RBRACE, + ACTIONS(6718), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_enum_variant_list_repeat2, STATE(3149), 2, sym_line_comment, sym_block_comment, - [90565] = 6, + [90541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6726), 1, - anon_sym_EQ, - STATE(3727), 1, - sym_where_clause, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(6348), 1, + anon_sym_GT, + STATE(3258), 1, + sym_lifetime, STATE(3150), 2, sym_line_comment, sym_block_comment, - [90585] = 6, + [90561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6728), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(6720), 1, + anon_sym_SEMI, + ACTIONS(6722), 1, + anon_sym_EQ, STATE(3151), 2, sym_line_comment, sym_block_comment, - [90605] = 4, + [90581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188810,5561 +188945,5569 @@ static const uint16_t ts_small_parse_table[] = { STATE(3152), 2, sym_line_comment, sym_block_comment, - ACTIONS(6730), 3, + ACTIONS(6724), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [90621] = 6, + [90597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, - sym_identifier, - ACTIONS(6734), 1, - anon_sym_ref, - ACTIONS(6736), 1, - sym_mutable_specifier, + ACTIONS(6726), 1, + anon_sym_RBRACE, + ACTIONS(6728), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_enum_variant_list_repeat2, STATE(3153), 2, sym_line_comment, sym_block_comment, - [90641] = 6, + [90617] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(4270), 1, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(6730), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(3065), 1, + aux_sym_type_arguments_repeat1, STATE(3154), 2, sym_line_comment, sym_block_comment, - [90661] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [90637] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - anon_sym_move, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(3116), 1, + anon_sym_RPAREN, + ACTIONS(6732), 1, + anon_sym_COMMA, + STATE(2634), 1, + aux_sym_slice_pattern_repeat1, STATE(3155), 2, sym_line_comment, sym_block_comment, - [90681] = 5, + [90657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, + ACTIONS(6734), 1, + anon_sym_RBRACE, + ACTIONS(6736), 1, + anon_sym_COMMA, + STATE(3048), 1, + aux_sym_struct_pattern_repeat1, STATE(3156), 2, sym_line_comment, sym_block_comment, - [90698] = 5, + [90677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6744), 1, + ACTIONS(6738), 1, sym_identifier, + ACTIONS(6740), 1, + anon_sym_await, + ACTIONS(6742), 1, + sym_integer_literal, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90715] = 5, + [90697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6744), 1, + anon_sym_in, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90732] = 5, + [90714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1218), 1, - sym_declaration_list, + ACTIONS(4147), 1, + anon_sym_LPAREN, + STATE(1688), 1, + sym_parameters, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90749] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(238), 1, - sym_closure_parameters, + ACTIONS(5148), 1, + anon_sym_COLON, + STATE(2487), 1, + sym_trait_bounds, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90766] = 5, + [90748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, - sym_super, + ACTIONS(4797), 1, + anon_sym_BANG, + ACTIONS(4855), 1, + anon_sym_COLON_COLON, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90783] = 5, + [90765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, ACTIONS(6746), 1, - anon_sym_AMP_AMP, + anon_sym_LT, + STATE(982), 1, + sym_type_parameters, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90800] = 4, + [90782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3414), 1, + anon_sym_LPAREN, + STATE(1297), 1, + sym_parameters, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(3390), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90832] = 5, + [90814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, + ACTIONS(5360), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90849] = 5, + [90831] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_declaration_list, + STATE(221), 1, + sym_closure_parameters, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90866] = 5, + [90848] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6750), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90883] = 5, + [90863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, + ACTIONS(6752), 1, + sym_identifier, + ACTIONS(6754), 1, + sym_mutable_specifier, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90900] = 5, + [90880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, + ACTIONS(5891), 1, sym_identifier, - ACTIONS(5940), 1, + ACTIONS(5893), 1, sym_super, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90917] = 4, + [90897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 2, + ACTIONS(5899), 2, sym_identifier, sym_super, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90932] = 5, + [90912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, + ACTIONS(6756), 1, sym_identifier, - ACTIONS(6752), 1, + ACTIONS(6758), 1, sym_super, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90949] = 5, + [90929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6442), 1, - anon_sym_for, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1304), 1, + sym_enum_variant_list, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90966] = 5, + [90946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6754), 1, + ACTIONS(6760), 1, sym_identifier, - ACTIONS(6756), 1, + ACTIONS(6762), 1, sym_super, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90983] = 5, + [90963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym_enum_variant_list, STATE(3174), 2, sym_line_comment, sym_block_comment, - [91000] = 5, + [90980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - sym_identifier, - ACTIONS(6760), 1, + ACTIONS(5336), 1, sym_super, + ACTIONS(5787), 1, + sym_identifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6766), 1, + sym_super, STATE(3176), 2, sym_line_comment, sym_block_comment, - [91034] = 4, + [91014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6768), 1, + anon_sym_EQ, STATE(3177), 2, sym_line_comment, sym_block_comment, - [91049] = 5, + [91031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(937), 1, - sym_type_parameters, + ACTIONS(5306), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3178), 2, sym_line_comment, sym_block_comment, - [91066] = 5, + [91046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - anon_sym_SEMI, - ACTIONS(6768), 1, - anon_sym_EQ, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(906), 1, + sym_type_parameters, STATE(3179), 2, sym_line_comment, sym_block_comment, - [91083] = 5, + [91063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1696), 1, - sym_parameters, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(623), 1, + sym_field_declaration_list, STATE(3180), 2, sym_line_comment, sym_block_comment, - [91100] = 4, + [91080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_field_declaration_list, STATE(3181), 2, sym_line_comment, sym_block_comment, - [91115] = 5, + [91097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_in, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1382), 1, + sym_declaration_list, STATE(3182), 2, sym_line_comment, sym_block_comment, - [91132] = 4, + [91114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5382), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3183), 2, sym_line_comment, sym_block_comment, - [91147] = 4, + [91131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 2, - sym_identifier, - sym_super, + ACTIONS(6770), 1, + anon_sym_SEMI, + ACTIONS(6772), 1, + anon_sym_EQ, STATE(3184), 2, sym_line_comment, sym_block_comment, - [91162] = 5, + [91148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, + ACTIONS(6774), 2, + sym_identifier, + sym_super, STATE(3185), 2, sym_line_comment, sym_block_comment, - [91179] = 5, + [91163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_field_declaration_list, + ACTIONS(6776), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3186), 2, sym_line_comment, sym_block_comment, - [91196] = 5, + [91178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - STATE(1518), 1, - sym_field_initializer_list, + STATE(1396), 1, + sym_field_declaration_list, STATE(3187), 2, sym_line_comment, sym_block_comment, - [91213] = 4, + [91195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5272), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3188), 2, sym_line_comment, sym_block_comment, - [91228] = 5, + [91212] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, + ACTIONS(6778), 2, + sym_identifier, + sym_super, STATE(3189), 2, sym_line_comment, sym_block_comment, - [91245] = 5, + [91227] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1695), 1, - sym_parameters, + ACTIONS(6780), 1, + anon_sym_SEMI, + ACTIONS(6782), 1, + anon_sym_as, STATE(3190), 2, sym_line_comment, sym_block_comment, - [91262] = 4, + [91244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4797), 1, + anon_sym_BANG, + ACTIONS(4843), 1, + anon_sym_COLON_COLON, STATE(3191), 2, sym_line_comment, sym_block_comment, - [91277] = 5, + [91261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(677), 1, - sym_declaration_list, + ACTIONS(6784), 1, + anon_sym_SEMI, + ACTIONS(6786), 1, + anon_sym_EQ, STATE(3192), 2, sym_line_comment, sym_block_comment, - [91294] = 5, + [91278] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(1048), 1, - sym_type_parameters, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_declaration_list, STATE(3193), 2, sym_line_comment, sym_block_comment, - [91311] = 5, + [91295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(3234), 1, - sym_lifetime, + ACTIONS(4147), 1, + anon_sym_LPAREN, + STATE(1670), 1, + sym_parameters, STATE(3194), 2, sym_line_comment, sym_block_comment, - [91328] = 5, + [91312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1229), 1, - sym_declaration_list, + ACTIONS(5272), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3195), 2, sym_line_comment, sym_block_comment, - [91345] = 5, + [91329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, + ACTIONS(5336), 2, sym_identifier, + sym_super, STATE(3196), 2, sym_line_comment, sym_block_comment, - [91362] = 5, + [91344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - STATE(1270), 1, - sym_declaration_list, + STATE(697), 1, + sym_field_declaration_list, STATE(3197), 2, sym_line_comment, sym_block_comment, - [91379] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(237), 1, - sym_closure_parameters, + ACTIONS(6788), 2, + sym_float_literal, + sym_integer_literal, STATE(3198), 2, sym_line_comment, sym_block_comment, - [91396] = 4, + [91376] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 2, - sym_identifier, - sym_super, + ACTIONS(6637), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3199), 2, sym_line_comment, sym_block_comment, - [91411] = 5, + [91391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2303), 1, - sym_parameters, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_for, STATE(3200), 2, sym_line_comment, sym_block_comment, - [91428] = 5, + [91408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6780), 1, - sym_identifier, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(6790), 1, + anon_sym_COLON_COLON, STATE(3201), 2, sym_line_comment, sym_block_comment, - [91445] = 5, + [91425] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym_declaration_list, + ACTIONS(5302), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3202), 2, sym_line_comment, sym_block_comment, - [91462] = 5, + [91442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_declaration_list, + ACTIONS(5334), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3203), 2, sym_line_comment, sym_block_comment, - [91479] = 5, + [91459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5366), 1, + anon_sym_RBRACE, ACTIONS(6748), 1, anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RPAREN, STATE(3204), 2, sym_line_comment, sym_block_comment, - [91496] = 5, + [91476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(771), 1, + sym_enum_variant_list, STATE(3205), 2, sym_line_comment, sym_block_comment, - [91513] = 4, + [91493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(922), 1, + sym_type_parameters, STATE(3206), 2, sym_line_comment, sym_block_comment, - [91528] = 5, + [91510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RBRACK, + ACTIONS(6766), 1, + sym_super, + ACTIONS(6792), 1, + sym_identifier, STATE(3207), 2, sym_line_comment, sym_block_comment, - [91545] = 5, + [91527] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, + ACTIONS(5581), 1, sym_super, - ACTIONS(6786), 1, + ACTIONS(6794), 1, sym_identifier, STATE(3208), 2, sym_line_comment, sym_block_comment, - [91562] = 5, + [91544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6788), 1, - anon_sym_RBRACE, + ACTIONS(6796), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3209), 2, sym_line_comment, sym_block_comment, - [91579] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(6798), 2, + sym_identifier, + sym_super, STATE(3210), 2, sym_line_comment, sym_block_comment, - [91596] = 5, + [91574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1754), 1, - sym_type_arguments, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(703), 1, + sym_declaration_list, STATE(3211), 2, sym_line_comment, sym_block_comment, - [91613] = 5, + [91591] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - anon_sym_SEMI, - ACTIONS(6792), 1, - anon_sym_EQ, + ACTIONS(6766), 2, + sym_identifier, + sym_super, STATE(3212), 2, sym_line_comment, sym_block_comment, - [91630] = 5, + [91606] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5704), 1, - anon_sym_COLON, + ACTIONS(5749), 1, + sym_super, + ACTIONS(6800), 1, + sym_identifier, STATE(3213), 2, sym_line_comment, sym_block_comment, - [91647] = 5, + [91623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, + ACTIONS(6802), 1, + sym_identifier, + ACTIONS(6804), 1, + sym_super, STATE(3214), 2, sym_line_comment, sym_block_comment, - [91664] = 4, + [91640] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(222), 1, + sym_closure_parameters, STATE(3215), 2, sym_line_comment, sym_block_comment, - [91679] = 4, + [91657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(587), 1, + sym_declaration_list, STATE(3216), 2, sym_line_comment, sym_block_comment, - [91694] = 5, + [91674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6796), 1, - sym_identifier, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + STATE(3258), 1, + sym_lifetime, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91711] = 5, + [91691] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_enum_variant_list, + ACTIONS(6806), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91728] = 4, + [91706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 2, + ACTIONS(5581), 1, + sym_super, + ACTIONS(6802), 1, sym_identifier, - sym_metavariable, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91743] = 4, + [91723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5749), 1, + sym_super, + ACTIONS(6808), 1, + sym_identifier, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91758] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(250), 1, - sym_closure_parameters, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(6146), 1, + anon_sym_for, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91775] = 4, + [91757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 2, - anon_sym_GT, + ACTIONS(6810), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91790] = 5, + [91772] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, + STATE(223), 1, + sym_closure_parameters, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91807] = 4, + [91789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5940), 2, - sym_identifier, - sym_super, + ACTIONS(6812), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91822] = 5, + [91804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1289), 1, - sym_field_declaration_list, + ACTIONS(6814), 1, + sym_identifier, + ACTIONS(6816), 1, + sym_mutable_specifier, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91839] = 5, + [91821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6804), 1, + ACTIONS(5893), 2, sym_identifier, + sym_super, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91856] = 5, + [91836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(6762), 1, sym_super, - ACTIONS(5773), 1, + ACTIONS(6818), 1, sym_identifier, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91873] = 5, + [91853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(5336), 1, sym_super, - ACTIONS(6806), 1, + ACTIONS(5909), 1, sym_identifier, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91890] = 5, + [91870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1291), 1, - sym_field_declaration_list, + ACTIONS(6766), 1, + sym_super, + ACTIONS(6820), 1, + sym_identifier, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91907] = 5, + [91887] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RPAREN, + ACTIONS(5581), 2, + sym_identifier, + sym_super, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91924] = 5, + [91902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RBRACK, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_field_declaration_list, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91941] = 5, + [91919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6810), 1, - anon_sym_RBRACE, + ACTIONS(3414), 1, + anon_sym_LPAREN, + STATE(1329), 1, + sym_parameters, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91958] = 5, + [91936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(632), 1, + sym_field_declaration_list, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91975] = 4, + [91953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6822), 1, + anon_sym_LBRACK, + ACTIONS(6824), 1, + anon_sym_BANG, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91990] = 5, + [91970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(5749), 1, sym_super, - ACTIONS(6814), 1, + ACTIONS(6826), 1, sym_identifier, STATE(3235), 2, sym_line_comment, sym_block_comment, - [92007] = 5, + [91987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1292), 1, - sym_declaration_list, + ACTIONS(5956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3236), 2, sym_line_comment, sym_block_comment, - [92024] = 5, + [92002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - ACTIONS(6774), 1, - anon_sym_RPAREN, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1350), 1, + sym_enum_variant_list, STATE(3237), 2, sym_line_comment, sym_block_comment, - [92041] = 4, + [92019] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 2, - sym_identifier, - sym_super, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6828), 1, + anon_sym_in, STATE(3238), 2, sym_line_comment, sym_block_comment, - [92056] = 5, + [92036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2274), 1, + sym_parameters, STATE(3239), 2, sym_line_comment, sym_block_comment, - [92073] = 5, + [92053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6818), 1, - sym_identifier, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_declaration_list, STATE(3240), 2, sym_line_comment, sym_block_comment, - [92090] = 5, + [92070] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1237), 1, - sym_field_declaration_list, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(3870), 1, + anon_sym_COLON, STATE(3241), 2, sym_line_comment, sym_block_comment, - [92107] = 5, + [92087] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, - anon_sym_LBRACE, - STATE(1832), 1, - sym_field_initializer_list, + STATE(226), 1, + sym_closure_parameters, STATE(3242), 2, sym_line_comment, sym_block_comment, - [92124] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(6830), 1, + anon_sym_RPAREN, + ACTIONS(6832), 1, + anon_sym_COLON_COLON, STATE(3243), 2, sym_line_comment, sym_block_comment, - [92141] = 4, + [92121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6834), 1, + anon_sym_RPAREN, + ACTIONS(6836), 1, + anon_sym_COLON_COLON, STATE(3244), 2, sym_line_comment, sym_block_comment, - [92156] = 5, + [92138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, + ACTIONS(6834), 1, + anon_sym_RPAREN, + ACTIONS(6838), 1, + anon_sym_COLON_COLON, STATE(3245), 2, sym_line_comment, sym_block_comment, - [92173] = 5, + [92155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(6804), 1, sym_super, - ACTIONS(5836), 1, + ACTIONS(6840), 1, sym_identifier, STATE(3246), 2, sym_line_comment, sym_block_comment, - [92190] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, + ACTIONS(6834), 1, + anon_sym_RPAREN, + ACTIONS(6842), 1, + anon_sym_COLON_COLON, STATE(3247), 2, sym_line_comment, sym_block_comment, - [92207] = 5, + [92189] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym_field_declaration_list, + STATE(227), 1, + sym_closure_parameters, STATE(3248), 2, sym_line_comment, sym_block_comment, - [92224] = 5, + [92206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2397), 1, - sym_parameters, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(709), 1, + sym_enum_variant_list, STATE(3249), 2, sym_line_comment, sym_block_comment, - [92241] = 5, + [92223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, - sym_identifier, - ACTIONS(6826), 1, + ACTIONS(6798), 1, sym_super, + ACTIONS(6844), 1, + sym_identifier, STATE(3250), 2, sym_line_comment, sym_block_comment, - [92258] = 5, + [92240] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - sym_identifier, - ACTIONS(6828), 1, + ACTIONS(5789), 1, sym_super, + ACTIONS(5950), 1, + sym_identifier, STATE(3251), 2, sym_line_comment, sym_block_comment, - [92275] = 5, + [92257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(6778), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(6846), 1, sym_identifier, STATE(3252), 2, sym_line_comment, sym_block_comment, - [92292] = 5, + [92274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym_field_declaration_list, STATE(3253), 2, sym_line_comment, sym_block_comment, - [92309] = 5, + [92291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - STATE(576), 1, - sym_field_declaration_list, + STATE(1126), 1, + sym_declaration_list, STATE(3254), 2, sym_line_comment, sym_block_comment, - [92326] = 5, + [92308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - STATE(1240), 1, - sym_field_declaration_list, + STATE(1129), 1, + sym_declaration_list, STATE(3255), 2, sym_line_comment, sym_block_comment, - [92343] = 5, + [92325] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(652), 1, - sym_declaration_list, + ACTIONS(5489), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3256), 2, sym_line_comment, sym_block_comment, - [92360] = 4, + [92340] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 2, - sym_identifier, - sym_super, + ACTIONS(6848), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3257), 2, sym_line_comment, sym_block_comment, - [92375] = 4, + [92355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 2, - anon_sym_RPAREN, + ACTIONS(6222), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3258), 2, sym_line_comment, sym_block_comment, - [92390] = 4, + [92370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 2, - sym_identifier, - sym_super, + ACTIONS(6850), 1, + anon_sym_SEMI, + ACTIONS(6852), 1, + anon_sym_EQ, STATE(3259), 2, sym_line_comment, sym_block_comment, - [92405] = 5, + [92387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6832), 1, - anon_sym_in, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1162), 1, + sym_field_declaration_list, STATE(3260), 2, sym_line_comment, sym_block_comment, - [92422] = 5, + [92404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_SEMI, - ACTIONS(6836), 1, - anon_sym_as, + ACTIONS(5749), 2, + sym_identifier, + sym_super, STATE(3261), 2, sym_line_comment, sym_block_comment, - [92439] = 5, + [92419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, + ACTIONS(6854), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3262), 2, sym_line_comment, sym_block_comment, - [92456] = 5, + [92434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6804), 1, sym_super, - ACTIONS(6840), 1, + ACTIONS(6856), 1, sym_identifier, STATE(3263), 2, sym_line_comment, sym_block_comment, - [92473] = 5, + [92451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6506), 1, - anon_sym_for, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_declaration_list, STATE(3264), 2, sym_line_comment, sym_block_comment, - [92490] = 5, + [92468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6762), 1, sym_super, - ACTIONS(6842), 1, + ACTIONS(6858), 1, sym_identifier, STATE(3265), 2, sym_line_comment, sym_block_comment, - [92507] = 5, + [92485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5789), 1, sym_super, - ACTIONS(5828), 1, + ACTIONS(5927), 1, sym_identifier, STATE(3266), 2, sym_line_comment, sym_block_comment, - [92524] = 5, + [92502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6778), 1, sym_super, - ACTIONS(6844), 1, + ACTIONS(6860), 1, sym_identifier, STATE(3267), 2, sym_line_comment, sym_block_comment, - [92541] = 5, + [92519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_as, + ACTIONS(6246), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3268), 2, sym_line_comment, sym_block_comment, - [92558] = 4, + [92534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5909), 1, + sym_identifier, STATE(3269), 2, sym_line_comment, sym_block_comment, - [92573] = 4, + [92551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_enum_variant_list, STATE(3270), 2, sym_line_comment, sym_block_comment, - [92588] = 5, + [92568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(981), 1, - sym_type_parameters, + ACTIONS(6862), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3271), 2, sym_line_comment, sym_block_comment, - [92605] = 4, + [92583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_field_declaration_list, STATE(3272), 2, sym_line_comment, sym_block_comment, - [92620] = 5, + [92600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6856), 1, - sym_identifier, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1204), 1, + sym_field_declaration_list, STATE(3273), 2, sym_line_comment, sym_block_comment, - [92637] = 5, + [92617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6858), 1, - sym_identifier, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(4030), 1, + anon_sym_COLON, STATE(3274), 2, sym_line_comment, sym_block_comment, - [92654] = 5, + [92634] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, + ACTIONS(6397), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3275), 2, sym_line_comment, sym_block_comment, - [92671] = 5, + [92649] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 1, - sym_super, - ACTIONS(6860), 1, - sym_identifier, + ACTIONS(6864), 1, + anon_sym_SEMI, + ACTIONS(6866), 1, + anon_sym_as, STATE(3276), 2, sym_line_comment, sym_block_comment, - [92688] = 5, + [92666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1153), 1, - sym_parameters, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, + sym_super, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92705] = 4, + [92683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6554), 2, - anon_sym_GT, - anon_sym_COMMA, + anon_sym_SLASH_STAR, + ACTIONS(6762), 1, + sym_super, + ACTIONS(6872), 1, + sym_identifier, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92720] = 5, + [92700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_field_declaration_list, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5899), 1, + sym_super, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92737] = 5, + [92717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(6774), 1, sym_super, - ACTIONS(6820), 1, + ACTIONS(6874), 1, sym_identifier, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92754] = 5, + [92734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(5749), 1, sym_super, - ACTIONS(6786), 1, + ACTIONS(6876), 1, sym_identifier, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92771] = 5, + [92751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, + ACTIONS(6878), 2, sym_identifier, + sym_metavariable, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92788] = 5, + [92766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(712), 1, + sym_field_declaration_list, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92805] = 5, + [92783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6862), 1, - sym_identifier, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(611), 1, + sym_enum_variant_list, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92822] = 5, + [92800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_field_declaration_list, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92839] = 5, + [92817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(5581), 1, sym_super, - ACTIONS(6864), 1, + ACTIONS(6840), 1, sym_identifier, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92856] = 5, + [92834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6762), 1, sym_super, - ACTIONS(6866), 1, + ACTIONS(6800), 1, sym_identifier, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92873] = 5, + [92851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5336), 1, sym_super, - ACTIONS(6000), 1, + ACTIONS(5950), 1, sym_identifier, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92890] = 5, + [92868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6766), 1, sym_super, - ACTIONS(6868), 1, + ACTIONS(6846), 1, sym_identifier, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92907] = 5, + [92885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6804), 1, sym_super, - ACTIONS(6870), 1, + ACTIONS(6880), 1, sym_identifier, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92924] = 5, + [92902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5789), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(5948), 1, sym_identifier, STATE(3291), 2, sym_line_comment, sym_block_comment, - [92941] = 5, + [92919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6778), 1, sym_super, - ACTIONS(6872), 1, + ACTIONS(6882), 1, sym_identifier, STATE(3292), 2, sym_line_comment, sym_block_comment, - [92958] = 5, + [92936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(6804), 1, sym_super, - ACTIONS(6870), 1, + ACTIONS(6884), 1, sym_identifier, STATE(3293), 2, sym_line_comment, sym_block_comment, - [92975] = 5, + [92953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(5789), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(5978), 1, sym_identifier, STATE(3294), 2, sym_line_comment, sym_block_comment, - [92992] = 5, + [92970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6778), 1, sym_super, - ACTIONS(6872), 1, + ACTIONS(6886), 1, sym_identifier, STATE(3295), 2, sym_line_comment, sym_block_comment, - [93009] = 5, + [92987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, + ACTIONS(6804), 1, sym_super, - ACTIONS(6814), 1, + ACTIONS(6888), 1, sym_identifier, STATE(3296), 2, sym_line_comment, sym_block_comment, - [93026] = 4, + [93004] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5789), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, STATE(3297), 2, sym_line_comment, sym_block_comment, - [93041] = 5, + [93021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, + ACTIONS(6778), 1, + sym_super, + ACTIONS(6890), 1, + sym_identifier, STATE(3298), 2, sym_line_comment, sym_block_comment, - [93058] = 5, + [93038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6880), 1, - anon_sym_SEMI, - ACTIONS(6882), 1, - anon_sym_EQ, + ACTIONS(5581), 1, + sym_super, + ACTIONS(6888), 1, + sym_identifier, STATE(3299), 2, sym_line_comment, sym_block_comment, - [93075] = 4, + [93055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, - sym_identifier, + ACTIONS(5336), 1, sym_super, + ACTIONS(5988), 1, + sym_identifier, STATE(3300), 2, sym_line_comment, sym_block_comment, - [93090] = 5, + [93072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6886), 1, - anon_sym_COLON_COLON, + ACTIONS(6766), 1, + sym_super, + ACTIONS(6890), 1, + sym_identifier, STATE(3301), 2, sym_line_comment, sym_block_comment, - [93107] = 5, + [93089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6888), 1, - anon_sym_RBRACE, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(777), 1, + sym_declaration_list, STATE(3302), 2, sym_line_comment, sym_block_comment, - [93124] = 5, + [93106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6890), 1, - anon_sym_GT, + ACTIONS(6293), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3303), 2, sym_line_comment, sym_block_comment, - [93141] = 4, + [93121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6892), 1, + anon_sym_RBRACE, STATE(3304), 2, sym_line_comment, sym_block_comment, - [93156] = 5, + [93138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6894), 1, + anon_sym_RBRACE, STATE(3305), 2, sym_line_comment, sym_block_comment, - [93173] = 5, + [93155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2299), 1, + sym_parameters, STATE(3306), 2, sym_line_comment, sym_block_comment, - [93190] = 5, + [93172] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6894), 1, - anon_sym_RBRACE, + ACTIONS(6896), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3307), 2, sym_line_comment, sym_block_comment, - [93207] = 5, + [93187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_BANG, - ACTIONS(6898), 1, - anon_sym_COLON_COLON, + ACTIONS(6898), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3308), 2, sym_line_comment, sym_block_comment, - [93224] = 5, + [93202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(2390), 1, + STATE(2476), 1, sym_parameters, STATE(3309), 2, sym_line_comment, sym_block_comment, - [93241] = 5, + [93219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym_enum_variant_list, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2284), 1, + sym_parameters, STATE(3310), 2, sym_line_comment, sym_block_comment, - [93258] = 4, + [93236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 2, - sym_identifier, - sym_super, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_field_declaration_list, STATE(3311), 2, sym_line_comment, sym_block_comment, - [93273] = 5, + [93253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(889), 1, - sym_type_parameters, + ACTIONS(6900), 1, + anon_sym_LPAREN, + ACTIONS(6902), 1, + anon_sym_COLON_COLON, STATE(3312), 2, sym_line_comment, sym_block_comment, - [93290] = 5, + [93270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, + ACTIONS(6778), 1, + sym_super, + ACTIONS(6820), 1, + sym_identifier, STATE(3313), 2, sym_line_comment, sym_block_comment, - [93307] = 5, + [93287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_declaration_list, + ACTIONS(6904), 1, + anon_sym_SEMI, + ACTIONS(6906), 1, + anon_sym_EQ, STATE(3314), 2, sym_line_comment, sym_block_comment, - [93324] = 5, + [93304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(669), 1, - sym_field_declaration_list, + ACTIONS(6452), 1, + sym_identifier, + ACTIONS(6456), 1, + sym_mutable_specifier, STATE(3315), 2, sym_line_comment, sym_block_comment, - [93341] = 4, + [93321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6908), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3316), 2, sym_line_comment, sym_block_comment, - [93356] = 5, + [93336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6902), 1, - anon_sym_EQ, + ACTIONS(3532), 1, + anon_sym_PLUS, + ACTIONS(3584), 1, + anon_sym_COLON_COLON, STATE(3317), 2, sym_line_comment, sym_block_comment, - [93373] = 5, + [93353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(883), 1, - sym_type_parameters, + ACTIONS(3532), 1, + anon_sym_PLUS, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, STATE(3318), 2, sym_line_comment, sym_block_comment, - [93390] = 5, + [93370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6904), 1, - anon_sym_EQ, + ACTIONS(6910), 1, + anon_sym_BANG, + ACTIONS(6912), 1, + anon_sym_COLON_COLON, STATE(3319), 2, sym_line_comment, sym_block_comment, - [93407] = 5, + [93387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1431), 1, - sym_type_arguments, + ACTIONS(6914), 1, + anon_sym_SEMI, + ACTIONS(6916), 1, + anon_sym_as, STATE(3320), 2, sym_line_comment, sym_block_comment, - [93424] = 5, + [93404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, + ACTIONS(5645), 1, + anon_sym_COLON, + ACTIONS(5647), 1, + anon_sym_PIPE, STATE(3321), 2, sym_line_comment, sym_block_comment, - [93441] = 4, + [93421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym_declaration_list, STATE(3322), 2, sym_line_comment, sym_block_comment, - [93456] = 5, + [93438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1195), 1, - sym_parameters, + ACTIONS(6918), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3323), 2, sym_line_comment, sym_block_comment, - [93473] = 5, + [93453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_declaration_list, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6920), 1, + anon_sym_in, STATE(3324), 2, sym_line_comment, sym_block_comment, - [93490] = 5, + [93470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_mutable_specifier, + ACTIONS(6922), 1, + anon_sym_STAR_SLASH, + ACTIONS(6924), 1, + sym__block_comment_content, STATE(3325), 2, sym_line_comment, sym_block_comment, - [93507] = 4, + [93487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6926), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3326), 2, sym_line_comment, sym_block_comment, - [93522] = 5, + [93502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6928), 1, + anon_sym_EQ, STATE(3327), 2, sym_line_comment, sym_block_comment, - [93539] = 5, + [93519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(950), 1, + sym_type_parameters, STATE(3328), 2, sym_line_comment, sym_block_comment, - [93556] = 5, + [93536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6914), 1, - sym_identifier, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(3882), 1, + anon_sym_COLON, STATE(3329), 2, sym_line_comment, sym_block_comment, - [93573] = 5, + [93553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(3886), 1, + anon_sym_COLON, STATE(3330), 2, sym_line_comment, sym_block_comment, - [93590] = 5, + [93570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(2280), 1, + STATE(2300), 1, sym_parameters, STATE(3331), 2, sym_line_comment, sym_block_comment, - [93607] = 5, + [93587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6900), 1, + anon_sym_LPAREN, + ACTIONS(6930), 1, + anon_sym_COLON_COLON, STATE(3332), 2, sym_line_comment, sym_block_comment, - [93624] = 4, + [93604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6932), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3333), 2, sym_line_comment, sym_block_comment, - [93639] = 5, + [93619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(626), 1, + sym_declaration_list, STATE(3334), 2, sym_line_comment, sym_block_comment, - [93656] = 5, + [93636] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6918), 1, - sym_identifier, + STATE(245), 1, + sym_closure_parameters, STATE(3335), 2, sym_line_comment, sym_block_comment, - [93673] = 5, + [93653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5083), 1, + anon_sym_for, STATE(3336), 2, sym_line_comment, sym_block_comment, - [93690] = 5, + [93670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, + ACTIONS(6934), 1, + anon_sym_SEMI, + ACTIONS(6936), 1, + anon_sym_as, STATE(3337), 2, sym_line_comment, sym_block_comment, - [93707] = 5, + [93687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1167), 1, - sym_field_declaration_list, + ACTIONS(5388), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3338), 2, sym_line_comment, sym_block_comment, - [93724] = 4, + [93704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5324), 2, + ACTIONS(6832), 1, + anon_sym_COLON_COLON, + ACTIONS(6938), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3339), 2, sym_line_comment, sym_block_comment, - [93739] = 5, + [93721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(579), 1, - sym_field_declaration_list, + ACTIONS(5388), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3340), 2, sym_line_comment, sym_block_comment, - [93756] = 4, + [93738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 2, - sym_identifier, - sym_super, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(6255), 1, + anon_sym_for, STATE(3341), 2, sym_line_comment, sym_block_comment, - [93771] = 5, + [93755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1170), 1, - sym_declaration_list, + ACTIONS(5346), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3342), 2, sym_line_comment, sym_block_comment, - [93788] = 5, + [93772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(499), 1, - sym_declaration_list, + ACTIONS(6836), 1, + anon_sym_COLON_COLON, + ACTIONS(6940), 1, + anon_sym_RPAREN, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93805] = 5, + [93789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6920), 1, + ACTIONS(5346), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, anon_sym_SEMI, - ACTIONS(6922), 1, - anon_sym_as, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93822] = 5, + [93806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3894), 1, - anon_sym_COLON, + ACTIONS(5581), 1, + sym_super, + ACTIONS(6942), 1, + sym_identifier, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93839] = 5, + [93823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - STATE(735), 1, - sym_field_declaration_list, + STATE(1418), 1, + sym_declaration_list, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93856] = 5, + [93840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(700), 1, - sym_enum_variant_list, + ACTIONS(6838), 1, + anon_sym_COLON_COLON, + ACTIONS(6940), 1, + anon_sym_RPAREN, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93873] = 4, + [93857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1375), 1, + sym_declaration_list, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93888] = 5, + [93874] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 1, - anon_sym_SEMI, - ACTIONS(6928), 1, - anon_sym_EQ, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1168), 1, + sym_declaration_list, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93905] = 5, + [93891] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - ACTIONS(6930), 1, - anon_sym_RPAREN, + STATE(252), 1, + sym_closure_parameters, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93922] = 5, + [93908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6932), 1, - sym_identifier, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6944), 1, + anon_sym_RPAREN, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93939] = 5, + [93925] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1176), 1, - sym_field_declaration_list, + ACTIONS(6842), 1, + anon_sym_COLON_COLON, + ACTIONS(6940), 1, + anon_sym_RPAREN, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93956] = 5, + [93942] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2294), 1, - sym_parameters, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6944), 1, + anon_sym_RBRACK, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93973] = 5, + [93959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6748), 1, anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RPAREN, + ACTIONS(6946), 1, + anon_sym_RBRACE, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93990] = 5, + [93976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RBRACK, + ACTIONS(5411), 1, + anon_sym_LBRACE, + STATE(1294), 1, + sym_enum_variant_list, STATE(3355), 2, sym_line_comment, sym_block_comment, - [94007] = 5, + [93993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RPAREN, + ACTIONS(4180), 1, + anon_sym_LBRACE, + STATE(1791), 1, + sym_field_initializer_list, STATE(3356), 2, sym_line_comment, sym_block_comment, - [94024] = 5, + [94010] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RBRACK, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1311), 1, + sym_field_declaration_list, STATE(3357), 2, sym_line_comment, sym_block_comment, - [94041] = 5, + [94027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1316), 1, + sym_field_declaration_list, STATE(3358), 2, sym_line_comment, sym_block_comment, - [94058] = 5, + [94044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(1322), 1, sym_declaration_list, STATE(3359), 2, sym_line_comment, sym_block_comment, - [94075] = 5, + [94061] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2263), 1, - sym_parameters, + ACTIONS(3422), 1, + anon_sym_LT2, + STATE(1440), 1, + sym_type_arguments, STATE(3360), 2, sym_line_comment, sym_block_comment, - [94092] = 4, + [94078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 2, - sym_identifier, - sym_super, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_parameters, STATE(3361), 2, sym_line_comment, sym_block_comment, - [94107] = 5, + [94095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, + ACTIONS(6748), 1, anon_sym_SEMI, - ACTIONS(6940), 1, - anon_sym_as, + ACTIONS(6948), 1, + anon_sym_RPAREN, STATE(3362), 2, sym_line_comment, sym_block_comment, - [94124] = 4, + [94112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6950), 1, + anon_sym_RPAREN, STATE(3363), 2, sym_line_comment, sym_block_comment, - [94139] = 5, + [94129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6950), 1, + anon_sym_RBRACK, STATE(3364), 2, sym_line_comment, sym_block_comment, - [94156] = 4, + [94146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6952), 1, + anon_sym_RPAREN, STATE(3365), 2, sym_line_comment, sym_block_comment, - [94171] = 5, + [94163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2300), 1, - sym_parameters, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6952), 1, + anon_sym_RBRACK, STATE(3366), 2, sym_line_comment, sym_block_comment, - [94188] = 5, + [94180] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RPAREN, ACTIONS(6748), 1, anon_sym_SEMI, + ACTIONS(6948), 1, + anon_sym_RBRACK, STATE(3367), 2, sym_line_comment, sym_block_comment, - [94205] = 5, + [94197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_COLON_COLON, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(3902), 1, + anon_sym_COLON, STATE(3368), 2, sym_line_comment, sym_block_comment, - [94222] = 5, + [94214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_STAR_SLASH, - ACTIONS(6948), 1, - sym__block_comment_content, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6954), 1, + anon_sym_RBRACE, STATE(3369), 2, sym_line_comment, sym_block_comment, - [94239] = 4, + [94231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, - sym_identifier, - sym_super, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4949), 1, + anon_sym_BANG, STATE(3370), 2, sym_line_comment, sym_block_comment, - [94254] = 5, + [94248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_declaration_list, + ACTIONS(5749), 1, + sym_super, + ACTIONS(6956), 1, + sym_identifier, STATE(3371), 2, sym_line_comment, sym_block_comment, - [94271] = 4, + [94265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6958), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3372), 2, sym_line_comment, sym_block_comment, - [94286] = 5, + [94280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6960), 2, + sym_float_literal, + sym_integer_literal, STATE(3373), 2, sym_line_comment, sym_block_comment, - [94303] = 5, + [94295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - sym_identifier, - ACTIONS(6828), 1, + ACTIONS(6804), 1, sym_super, + ACTIONS(6962), 1, + sym_identifier, STATE(3374), 2, sym_line_comment, sym_block_comment, - [94320] = 5, + [94312] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6952), 1, + ACTIONS(6762), 2, sym_identifier, + sym_super, STATE(3375), 2, sym_line_comment, sym_block_comment, - [94337] = 5, + [94327] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3954), 1, - anon_sym_COLON, + ACTIONS(6964), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3376), 2, sym_line_comment, sym_block_comment, - [94354] = 5, + [94342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2278), 1, + sym_parameters, STATE(3377), 2, sym_line_comment, sym_block_comment, - [94371] = 5, + [94359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6954), 1, - anon_sym_COLON_COLON, + ACTIONS(6966), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3378), 2, sym_line_comment, sym_block_comment, - [94388] = 4, + [94374] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + STATE(3085), 1, + sym_lifetime, STATE(3379), 2, sym_line_comment, sym_block_comment, - [94403] = 5, + [94391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(6960), 1, - anon_sym_COLON_COLON, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(920), 1, + sym_type_parameters, STATE(3380), 2, sym_line_comment, sym_block_comment, - [94420] = 5, + [94408] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, + ACTIONS(6529), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3381), 2, sym_line_comment, sym_block_comment, - [94437] = 4, + [94423] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(3414), 1, + anon_sym_LPAREN, + STATE(1221), 1, + sym_parameters, STATE(3382), 2, sym_line_comment, sym_block_comment, - [94452] = 5, + [94440] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, + ACTIONS(6968), 2, + sym_identifier, + sym_metavariable, STATE(3383), 2, sym_line_comment, sym_block_comment, - [94469] = 5, + [94455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(762), 1, + sym_declaration_list, STATE(3384), 2, sym_line_comment, sym_block_comment, - [94486] = 5, + [94472] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym_declaration_list, + STATE(246), 1, + sym_closure_parameters, STATE(3385), 2, sym_line_comment, sym_block_comment, - [94503] = 5, + [94489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6898), 1, - anon_sym_COLON_COLON, + ACTIONS(3548), 1, + anon_sym_LBRACE, + STATE(1426), 1, + sym_field_initializer_list, STATE(3386), 2, sym_line_comment, sym_block_comment, - [94520] = 5, + [94506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_enum_variant_list, + ACTIONS(5336), 1, + sym_super, + ACTIONS(6012), 1, + sym_identifier, STATE(3387), 2, sym_line_comment, sym_block_comment, - [94537] = 5, + [94523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(914), 1, - sym_type_parameters, + ACTIONS(4378), 1, + anon_sym_EQ_GT, + ACTIONS(6970), 1, + anon_sym_AMP_AMP, STATE(3388), 2, sym_line_comment, sym_block_comment, - [94554] = 5, + [94540] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6158), 1, - anon_sym_for, + ACTIONS(6656), 1, + anon_sym_EQ_GT, + ACTIONS(6970), 1, + anon_sym_AMP_AMP, STATE(3389), 2, sym_line_comment, sym_block_comment, - [94571] = 4, + [94557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6762), 1, + sym_super, + ACTIONS(6826), 1, + sym_identifier, STATE(3390), 2, sym_line_comment, sym_block_comment, - [94586] = 5, + [94574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, + ACTIONS(6291), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3391), 2, sym_line_comment, sym_block_comment, - [94603] = 4, + [94589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 2, - anon_sym_RBRACE, + ACTIONS(6356), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3392), 2, sym_line_comment, sym_block_comment, - [94618] = 5, + [94604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_field_declaration_list, + ACTIONS(6972), 1, + anon_sym_LPAREN, + ACTIONS(6974), 1, + anon_sym_COLON_COLON, STATE(3393), 2, sym_line_comment, sym_block_comment, - [94635] = 5, + [94621] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(884), 1, - sym_type_parameters, + ACTIONS(3532), 1, + anon_sym_PLUS, + ACTIONS(4320), 1, + anon_sym_COLON_COLON, STATE(3394), 2, sym_line_comment, sym_block_comment, - [94652] = 5, + [94638] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(3532), 1, + anon_sym_PLUS, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, STATE(3395), 2, sym_line_comment, sym_block_comment, - [94669] = 5, + [94655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6754), 1, - sym_identifier, + ACTIONS(4638), 1, + anon_sym_BANG, + ACTIONS(6912), 1, + anon_sym_COLON_COLON, STATE(3396), 2, sym_line_comment, sym_block_comment, - [94686] = 4, + [94672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_declaration_list, STATE(3397), 2, sym_line_comment, sym_block_comment, - [94701] = 5, + [94689] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6964), 1, - anon_sym_COLON_COLON, + STATE(218), 1, + sym_closure_parameters, STATE(3398), 2, sym_line_comment, sym_block_comment, - [94718] = 5, + [94706] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_enum_variant_list, + ACTIONS(5831), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3399), 2, sym_line_comment, sym_block_comment, - [94735] = 5, + [94721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, - anon_sym_BANG, - ACTIONS(6968), 1, - anon_sym_COLON_COLON, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(972), 1, + sym_type_parameters, STATE(3400), 2, sym_line_comment, sym_block_comment, - [94752] = 5, + [94738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(4006), 1, - anon_sym_COLON, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_declaration_list, STATE(3401), 2, sym_line_comment, sym_block_comment, - [94769] = 5, + [94755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3746), 1, - anon_sym_COLON, + ACTIONS(5116), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_declaration_list, STATE(3402), 2, sym_line_comment, sym_block_comment, - [94786] = 5, + [94772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6970), 1, - anon_sym_COLON_COLON, + ACTIONS(6976), 2, + sym_identifier, + sym_metavariable, STATE(3403), 2, sym_line_comment, sym_block_comment, - [94803] = 5, + [94787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(6900), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, anon_sym_COLON_COLON, STATE(3404), 2, sym_line_comment, sym_block_comment, - [94820] = 5, + [94804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(6980), 1, + anon_sym_BANG, + ACTIONS(6982), 1, + anon_sym_COLON_COLON, STATE(3405), 2, sym_line_comment, sym_block_comment, - [94837] = 5, + [94821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_declaration_list, STATE(3406), 2, sym_line_comment, sym_block_comment, - [94854] = 5, + [94838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_declaration_list, + ACTIONS(6900), 1, + anon_sym_LPAREN, + ACTIONS(6984), 1, + anon_sym_COLON_COLON, STATE(3407), 2, sym_line_comment, sym_block_comment, - [94871] = 5, + [94855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_LBRACK, - ACTIONS(6974), 1, + ACTIONS(4638), 1, anon_sym_BANG, + ACTIONS(6982), 1, + anon_sym_COLON_COLON, STATE(3408), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [94872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, + ACTIONS(5336), 1, + sym_super, + ACTIONS(5881), 1, sym_identifier, - sym_metavariable, STATE(3409), 2, sym_line_comment, sym_block_comment, - [94903] = 5, + [94889] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - sym_identifier, - ACTIONS(6980), 1, - sym_super, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_declaration_list, STATE(3410), 2, sym_line_comment, sym_block_comment, - [94920] = 4, + [94906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5360), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3411), 2, sym_line_comment, sym_block_comment, - [94935] = 4, + [94923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6986), 1, + anon_sym_LBRACK, + ACTIONS(6988), 1, + anon_sym_BANG, STATE(3412), 2, sym_line_comment, sym_block_comment, - [94950] = 5, + [94940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6986), 1, - anon_sym_in, + ACTIONS(6990), 2, + sym_identifier, + sym_metavariable, STATE(3413), 2, sym_line_comment, sym_block_comment, - [94967] = 4, + [94955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 2, + ACTIONS(5789), 2, sym_identifier, sym_super, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94982] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94970] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(252), 1, - sym_closure_parameters, + ACTIONS(6992), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94999] = 4, + [94985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2386), 1, + sym_parameters, STATE(3416), 2, sym_line_comment, sym_block_comment, - [95014] = 5, + [95002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1128), 1, - sym_parameters, + ACTIONS(6766), 1, + sym_super, + ACTIONS(6994), 1, + sym_identifier, STATE(3417), 2, sym_line_comment, sym_block_comment, - [95031] = 5, + [95019] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(983), 1, - sym_type_parameters, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(6996), 1, + anon_sym_in, STATE(3418), 2, sym_line_comment, sym_block_comment, - [95048] = 5, + [95036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(984), 1, - sym_type_parameters, + ACTIONS(6998), 2, + sym_identifier, + sym_metavariable, STATE(3419), 2, sym_line_comment, sym_block_comment, - [95065] = 5, + [95051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(2977), 1, - sym_lifetime, + ACTIONS(3150), 1, + anon_sym_PLUS, + ACTIONS(7000), 1, + anon_sym_GT, STATE(3420), 2, sym_line_comment, sym_block_comment, - [95082] = 5, + [95068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(4153), 1, + anon_sym_LT2, + STATE(1730), 1, + sym_type_arguments, STATE(3421), 2, sym_line_comment, sym_block_comment, - [95099] = 5, + [95085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5118), 1, - anon_sym_for, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(1003), 1, + sym_type_parameters, STATE(3422), 2, sym_line_comment, sym_block_comment, - [95116] = 5, + [95102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_field_declaration_list, + ACTIONS(6746), 1, + anon_sym_LT, + STATE(1004), 1, + sym_type_parameters, STATE(3423), 2, sym_line_comment, sym_block_comment, - [95133] = 5, + [95119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, - sym_identifier, - ACTIONS(6992), 1, - sym_mutable_specifier, + ACTIONS(6524), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3424), 2, sym_line_comment, sym_block_comment, - [95150] = 5, + [95134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5126), 1, + anon_sym_for, STATE(3425), 2, sym_line_comment, sym_block_comment, - [95167] = 5, + [95151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, + ACTIONS(5116), 1, anon_sym_LBRACE, - STATE(591), 1, - sym_enum_variant_list, + STATE(1212), 1, + sym_declaration_list, STATE(3426), 2, sym_line_comment, sym_block_comment, - [95184] = 5, + [95168] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(7002), 2, + sym_identifier, + sym_metavariable, STATE(3427), 2, sym_line_comment, sym_block_comment, - [95201] = 4, + [95183] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(688), 1, + sym_field_declaration_list, STATE(3428), 2, sym_line_comment, sym_block_comment, - [95216] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [95200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(6658), 1, + anon_sym_for, STATE(3429), 2, sym_line_comment, sym_block_comment, - [95233] = 5, + [95217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_for, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2415), 1, + sym_parameters, STATE(3430), 2, sym_line_comment, sym_block_comment, - [95250] = 5, + [95234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(6662), 1, + anon_sym_for, STATE(3431), 2, sym_line_comment, sym_block_comment, - [95267] = 5, + [95251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6720), 1, - anon_sym_for, + ACTIONS(6762), 1, + sym_super, + ACTIONS(6808), 1, + sym_identifier, STATE(3432), 2, sym_line_comment, sym_block_comment, - [95284] = 5, + [95268] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, + ACTIONS(6870), 2, sym_identifier, - ACTIONS(6998), 1, sym_super, STATE(3433), 2, sym_line_comment, sym_block_comment, - [95301] = 5, + [95283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3850), 1, - anon_sym_COLON, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(7004), 1, + anon_sym_in, STATE(3434), 2, sym_line_comment, sym_block_comment, - [95318] = 4, + [95300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5749), 1, + sym_super, + ACTIONS(6760), 1, + sym_identifier, STATE(3435), 2, sym_line_comment, sym_block_comment, - [95333] = 5, + [95317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7002), 1, - anon_sym_in, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(6676), 1, + anon_sym_for, STATE(3436), 2, sym_line_comment, sym_block_comment, - [95350] = 5, + [95334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_parameters, + ACTIONS(5787), 1, + sym_identifier, + ACTIONS(5789), 1, + sym_super, STATE(3437), 2, sym_line_comment, sym_block_comment, - [95367] = 5, + [95351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6728), 1, - anon_sym_for, + ACTIONS(7006), 1, + anon_sym_LBRACK, + ACTIONS(7008), 1, + anon_sym_BANG, STATE(3438), 2, sym_line_comment, sym_block_comment, - [95384] = 5, + [95368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6932), 1, - sym_identifier, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(7010), 1, + anon_sym_in, STATE(3439), 2, sym_line_comment, sym_block_comment, - [95401] = 5, + [95385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_BANG, + ACTIONS(7012), 1, + sym_identifier, + ACTIONS(7014), 1, + sym_super, STATE(3440), 2, sym_line_comment, sym_block_comment, - [95418] = 5, + [95402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5647), 1, anon_sym_PIPE, - ACTIONS(7008), 1, + ACTIONS(7016), 1, anon_sym_in, STATE(3441), 2, sym_line_comment, sym_block_comment, - [95435] = 5, + [95419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5647), 1, anon_sym_PIPE, - ACTIONS(7010), 1, + ACTIONS(7018), 1, anon_sym_in, STATE(3442), 2, sym_line_comment, sym_block_comment, - [95452] = 5, + [95436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7012), 1, - anon_sym_in, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2076), 1, + sym_parameters, STATE(3443), 2, sym_line_comment, sym_block_comment, - [95469] = 5, + [95453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7014), 1, - anon_sym_in, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(689), 1, + sym_declaration_list, STATE(3444), 2, sym_line_comment, sym_block_comment, - [95486] = 5, + [95470] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2080), 1, - sym_parameters, + STATE(220), 1, + sym_closure_parameters, STATE(3445), 2, sym_line_comment, sym_block_comment, - [95503] = 5, + [95487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6736), 1, - sym_mutable_specifier, + ACTIONS(6778), 1, + sym_super, STATE(3446), 2, sym_line_comment, sym_block_comment, - [95520] = 4, + [95504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 2, + ACTIONS(6698), 1, sym_identifier, - sym_metavariable, + ACTIONS(6702), 1, + sym_mutable_specifier, STATE(3447), 2, sym_line_comment, sym_block_comment, - [95535] = 4, + [95521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6804), 2, + sym_identifier, + sym_super, STATE(3448), 2, sym_line_comment, sym_block_comment, - [95550] = 5, + [95536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_declaration_list, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(951), 1, + sym_type_parameters, STATE(3449), 2, sym_line_comment, sym_block_comment, - [95567] = 5, + [95553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(2077), 1, + STATE(2079), 1, sym_parameters, STATE(3450), 2, sym_line_comment, sym_block_comment, - [95584] = 4, + [95570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5074), 1, + anon_sym_LBRACE, + STATE(691), 1, + sym_declaration_list, STATE(3451), 2, sym_line_comment, sym_block_comment, - [95599] = 5, + [95587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7020), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(7022), 1, - anon_sym_BANG, + sym_super, STATE(3452), 2, sym_line_comment, sym_block_comment, - [95616] = 5, + [95604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6203), 1, + ACTIONS(7024), 2, + anon_sym_const, sym_mutable_specifier, STATE(3453), 2, sym_line_comment, sym_block_comment, - [95633] = 5, + [95619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, - sym_identifier, ACTIONS(7026), 1, + sym_identifier, + ACTIONS(7028), 1, sym_mutable_specifier, STATE(3454), 2, sym_line_comment, sym_block_comment, - [95650] = 5, + [95636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(2082), 1, + STATE(2084), 1, sym_parameters, STATE(3455), 2, sym_line_comment, sym_block_comment, - [95667] = 5, + [95653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(636), 1, - sym_declaration_list, + ACTIONS(5581), 1, + sym_super, + ACTIONS(6962), 1, + sym_identifier, STATE(3456), 2, sym_line_comment, sym_block_comment, - [95684] = 5, + [95670] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_declaration_list, + ACTIONS(6181), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3457), 2, sym_line_comment, sym_block_comment, - [95701] = 4, + [95685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7030), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3458), 2, sym_line_comment, sym_block_comment, - [95716] = 4, + [95700] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - anon_sym_RBRACE, + ACTIONS(7032), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3459), 2, sym_line_comment, sym_block_comment, - [95730] = 4, + [95715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, + ACTIONS(4147), 1, + anon_sym_LPAREN, + STATE(1684), 1, + sym_parameters, STATE(3460), 2, sym_line_comment, sym_block_comment, - [95744] = 4, + [95732] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, + ACTIONS(7034), 1, + anon_sym_SEMI, STATE(3461), 2, sym_line_comment, sym_block_comment, - [95758] = 4, + [95746] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - sym_identifier, + ACTIONS(7036), 1, + anon_sym_COLON_COLON, STATE(3462), 2, sym_line_comment, sym_block_comment, - [95772] = 4, + [95760] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, + ACTIONS(7038), 1, + anon_sym_COLON, STATE(3463), 2, sym_line_comment, sym_block_comment, - [95786] = 4, + [95774] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_RBRACK, + ACTIONS(5334), 1, + anon_sym_SEMI, STATE(3464), 2, sym_line_comment, sym_block_comment, - [95800] = 4, + [95788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 1, + ACTIONS(7040), 1, anon_sym_SEMI, STATE(3465), 2, sym_line_comment, sym_block_comment, - [95814] = 4, + [95802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - anon_sym_RBRACK, + ACTIONS(7042), 1, + anon_sym_RBRACE, STATE(3466), 2, sym_line_comment, sym_block_comment, - [95828] = 4, + [95816] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RBRACK, + ACTIONS(7044), 1, + sym_identifier, STATE(3467), 2, sym_line_comment, sym_block_comment, - [95842] = 4, + [95830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - anon_sym_RBRACK, + ACTIONS(7046), 1, + anon_sym_SEMI, STATE(3468), 2, sym_line_comment, sym_block_comment, - [95856] = 4, + [95844] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_RBRACE, + ACTIONS(6110), 1, + anon_sym_RPAREN, STATE(3469), 2, sym_line_comment, sym_block_comment, - [95870] = 4, + [95858] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_COLON, + ACTIONS(5833), 1, + anon_sym_RPAREN, STATE(3470), 2, sym_line_comment, sym_block_comment, - [95884] = 4, + [95872] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - anon_sym_SEMI, + ACTIONS(7048), 1, + anon_sym_RBRACE, STATE(3471), 2, sym_line_comment, sym_block_comment, - [95898] = 4, + [95886] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_LT2, + ACTIONS(7050), 1, + sym__raw_string_literal_end, STATE(3472), 2, sym_line_comment, sym_block_comment, - [95912] = 4, + [95900] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, + ACTIONS(7052), 1, + anon_sym_RBRACK, STATE(3473), 2, sym_line_comment, sym_block_comment, - [95926] = 4, + [95914] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_RPAREN, + ACTIONS(7054), 1, + anon_sym_RBRACK, STATE(3474), 2, sym_line_comment, sym_block_comment, - [95940] = 4, + [95928] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - sym_identifier, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, STATE(3475), 2, sym_line_comment, sym_block_comment, - [95954] = 4, + [95942] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(4092), 1, anon_sym_COLON_COLON, STATE(3476), 2, sym_line_comment, sym_block_comment, - [95968] = 4, + [95956] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_COLON_COLON, + ACTIONS(7056), 1, + anon_sym_SEMI, STATE(3477), 2, sym_line_comment, sym_block_comment, - [95982] = 4, + [95970] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_fn, + ACTIONS(5108), 1, + anon_sym_COLON_COLON, STATE(3478), 2, sym_line_comment, sym_block_comment, - [95996] = 4, + [95984] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, - sym_identifier, + ACTIONS(7058), 1, + anon_sym_COLON_COLON, STATE(3479), 2, sym_line_comment, sym_block_comment, - [96010] = 4, + [95998] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, + ACTIONS(7060), 1, + anon_sym_fn, STATE(3480), 2, sym_line_comment, sym_block_comment, - [96024] = 4, + [96012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym__line_doc_content, + ACTIONS(7062), 1, + anon_sym_RPAREN, STATE(3481), 2, sym_line_comment, sym_block_comment, - [96038] = 4, + [96026] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - anon_sym_SEMI, + ACTIONS(6022), 1, + anon_sym_LBRACE, STATE(3482), 2, sym_line_comment, sym_block_comment, - [96052] = 4, + [96040] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - ts_builtin_sym_end, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, STATE(3483), 2, sym_line_comment, sym_block_comment, - [96066] = 4, + [96054] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_RPAREN, + ACTIONS(7064), 1, + anon_sym_SEMI, STATE(3484), 2, sym_line_comment, sym_block_comment, - [96080] = 4, + [96068] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_fn, + ACTIONS(7066), 1, + anon_sym_COLON, STATE(3485), 2, sym_line_comment, sym_block_comment, - [96094] = 4, + [96082] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_SEMI, + ACTIONS(7068), 1, + anon_sym_COLON, STATE(3486), 2, sym_line_comment, sym_block_comment, - [96108] = 4, + [96096] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_SEMI, + ACTIONS(929), 1, + anon_sym_EQ_GT, STATE(3487), 2, sym_line_comment, sym_block_comment, - [96122] = 4, + [96110] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7070), 1, - sym__raw_string_literal_end, + anon_sym_LPAREN, STATE(3488), 2, sym_line_comment, sym_block_comment, - [96136] = 4, + [96124] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7072), 1, - sym__raw_string_literal_end, + anon_sym_SEMI, STATE(3489), 2, sym_line_comment, sym_block_comment, - [96150] = 4, + [96138] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7074), 1, - anon_sym_SEMI, + sym__raw_string_literal_end, STATE(3490), 2, sym_line_comment, sym_block_comment, - [96164] = 4, + [96152] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7076), 1, - anon_sym_SEMI, + anon_sym_RBRACE, STATE(3491), 2, sym_line_comment, sym_block_comment, - [96178] = 4, + [96166] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7078), 1, - anon_sym_RBRACK, + anon_sym_LT2, STATE(3492), 2, sym_line_comment, sym_block_comment, - [96192] = 4, + [96180] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7080), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, STATE(3493), 2, sym_line_comment, sym_block_comment, - [96206] = 4, + [96194] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7082), 1, - anon_sym_RPAREN, + sym_identifier, STATE(3494), 2, sym_line_comment, sym_block_comment, - [96220] = 4, + [96208] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, - sym_identifier, + ACTIONS(6406), 1, + anon_sym_RBRACE, STATE(3495), 2, sym_line_comment, sym_block_comment, - [96234] = 4, + [96222] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - sym_identifier, + ACTIONS(6090), 1, + anon_sym_LBRACE, STATE(3496), 2, sym_line_comment, sym_block_comment, - [96248] = 4, + [96236] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - anon_sym_SEMI, + ACTIONS(7084), 1, + sym_identifier, STATE(3497), 2, sym_line_comment, sym_block_comment, - [96262] = 4, + [96250] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - anon_sym_SEMI, + ACTIONS(7086), 1, + sym_identifier, STATE(3498), 2, sym_line_comment, sym_block_comment, - [96276] = 4, + [96264] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_RBRACE, + ACTIONS(7088), 1, + sym_identifier, STATE(3499), 2, sym_line_comment, sym_block_comment, - [96290] = 4, + [96278] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - sym_identifier, + ACTIONS(7090), 1, + anon_sym_SEMI, STATE(3500), 2, sym_line_comment, sym_block_comment, - [96304] = 4, + [96292] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym_identifier, + ACTIONS(7092), 1, + anon_sym_RBRACE, STATE(3501), 2, sym_line_comment, sym_block_comment, - [96318] = 4, + [96306] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(3170), 1, + anon_sym_PLUS, STATE(3502), 2, sym_line_comment, sym_block_comment, - [96332] = 4, + [96320] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - sym_identifier, + ACTIONS(7094), 1, + anon_sym_COLON, STATE(3503), 2, sym_line_comment, sym_block_comment, - [96346] = 4, + [96334] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, + ACTIONS(7096), 1, anon_sym_SEMI, STATE(3504), 2, sym_line_comment, sym_block_comment, - [96360] = 4, + [96348] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_RPAREN, + ACTIONS(6838), 1, + anon_sym_COLON_COLON, STATE(3505), 2, sym_line_comment, sym_block_comment, - [96374] = 4, + [96362] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, + ACTIONS(7098), 1, + anon_sym_SEMI, STATE(3506), 2, sym_line_comment, sym_block_comment, - [96388] = 4, + [96376] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, + ACTIONS(7100), 1, + anon_sym_RBRACK, STATE(3507), 2, sym_line_comment, sym_block_comment, - [96402] = 4, + [96390] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - sym_self, + ACTIONS(7102), 1, + anon_sym_RPAREN, STATE(3508), 2, sym_line_comment, sym_block_comment, - [96416] = 4, + [96404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_EQ_GT, + ACTIONS(6946), 1, + anon_sym_SEMI, STATE(3509), 2, sym_line_comment, sym_block_comment, - [96430] = 4, + [96418] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_SEMI, + ACTIONS(7104), 1, + anon_sym_COLON, STATE(3510), 2, sym_line_comment, sym_block_comment, - [96444] = 4, + [96432] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_EQ, + ACTIONS(7106), 1, + anon_sym_SEMI, STATE(3511), 2, sym_line_comment, sym_block_comment, - [96458] = 4, + [96446] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, + ACTIONS(7108), 1, anon_sym_RBRACK, STATE(3512), 2, sym_line_comment, sym_block_comment, - [96472] = 4, + [96460] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, + ACTIONS(7110), 1, + anon_sym_SEMI, STATE(3513), 2, sym_line_comment, sym_block_comment, - [96486] = 4, + [96474] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - anon_sym_SEMI, + ACTIONS(7112), 1, + sym_identifier, STATE(3514), 2, sym_line_comment, sym_block_comment, - [96500] = 4, + [96488] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, + ACTIONS(7114), 1, + sym_identifier, STATE(3515), 2, sym_line_comment, sym_block_comment, - [96514] = 4, + [96502] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - sym_identifier, + ACTIONS(7116), 1, + anon_sym_SEMI, STATE(3516), 2, sym_line_comment, sym_block_comment, - [96528] = 4, + [96516] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_SEMI, + ACTIONS(5992), 1, + anon_sym_RBRACK, STATE(3517), 2, sym_line_comment, sym_block_comment, - [96542] = 4, + [96530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_RBRACE, + ACTIONS(7118), 1, + sym__line_doc_content, STATE(3518), 2, sym_line_comment, sym_block_comment, - [96556] = 4, + [96544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7120), 1, - anon_sym_SEMI, + anon_sym_LBRACK, STATE(3519), 2, sym_line_comment, sym_block_comment, - [96570] = 4, + [96558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_EQ_GT, + ACTIONS(7122), 1, + sym__line_doc_content, STATE(3520), 2, sym_line_comment, sym_block_comment, - [96584] = 4, + [96572] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, + ACTIONS(7124), 1, anon_sym_SEMI, STATE(3521), 2, sym_line_comment, sym_block_comment, - [96598] = 4, + [96586] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, - sym_identifier, + ACTIONS(7126), 1, + anon_sym_SEMI, STATE(3522), 2, sym_line_comment, sym_block_comment, - [96612] = 4, + [96600] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - sym_identifier, + ACTIONS(5366), 1, + anon_sym_SEMI, STATE(3523), 2, sym_line_comment, sym_block_comment, - [96626] = 4, + [96614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - sym__line_doc_content, + ACTIONS(7128), 1, + sym_identifier, STATE(3524), 2, sym_line_comment, sym_block_comment, - [96640] = 4, + [96628] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, + ACTIONS(7130), 1, sym_identifier, STATE(3525), 2, sym_line_comment, sym_block_comment, - [96654] = 4, + [96642] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_EQ, + ACTIONS(7132), 1, + anon_sym_COLON, STATE(3526), 2, sym_line_comment, sym_block_comment, - [96668] = 4, + [96656] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_RBRACE, + ACTIONS(7134), 1, + anon_sym_SEMI, STATE(3527), 2, sym_line_comment, sym_block_comment, - [96682] = 4, + [96670] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_RBRACE, + ACTIONS(7136), 1, + sym__raw_string_literal_end, STATE(3528), 2, sym_line_comment, sym_block_comment, - [96696] = 4, + [96684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_COLON, + ACTIONS(7138), 1, + anon_sym_SEMI, STATE(3529), 2, sym_line_comment, sym_block_comment, - [96710] = 4, + [96698] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - anon_sym_SEMI, + ACTIONS(7140), 1, + sym__raw_string_literal_end, STATE(3530), 2, sym_line_comment, sym_block_comment, - [96724] = 4, + [96712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym_identifier, + ACTIONS(7142), 1, + anon_sym_SEMI, STATE(3531), 2, sym_line_comment, sym_block_comment, - [96738] = 4, + [96726] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_COLON, + ACTIONS(7144), 1, + anon_sym_SEMI, STATE(3532), 2, sym_line_comment, sym_block_comment, - [96752] = 4, + [96740] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, + ACTIONS(7146), 1, sym_identifier, STATE(3533), 2, sym_line_comment, sym_block_comment, - [96766] = 4, + [96754] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, + ACTIONS(7148), 1, + sym_identifier, STATE(3534), 2, sym_line_comment, sym_block_comment, - [96780] = 4, + [96768] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_STAR_SLASH, + ACTIONS(7150), 1, + anon_sym_LPAREN, STATE(3535), 2, sym_line_comment, sym_block_comment, - [96794] = 4, + [96782] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, + ACTIONS(7152), 1, + anon_sym_EQ_GT, STATE(3536), 2, sym_line_comment, sym_block_comment, - [96808] = 4, + [96796] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - sym__raw_string_literal_end, + ACTIONS(7154), 1, + sym_identifier, STATE(3537), 2, sym_line_comment, sym_block_comment, - [96822] = 4, + [96810] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_LT, + ACTIONS(7156), 1, + anon_sym_SEMI, STATE(3538), 2, sym_line_comment, sym_block_comment, - [96836] = 4, + [96824] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym__line_doc_content, + ACTIONS(6954), 1, + anon_sym_SEMI, STATE(3539), 2, sym_line_comment, sym_block_comment, - [96850] = 4, + [96838] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_LPAREN, + ACTIONS(7158), 1, + anon_sym_EQ_GT, STATE(3540), 2, sym_line_comment, sym_block_comment, - [96864] = 4, + [96852] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_SEMI, + ACTIONS(7160), 1, + anon_sym_COLON_COLON, STATE(3541), 2, sym_line_comment, sym_block_comment, - [96878] = 4, + [96866] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_fn, + ACTIONS(5597), 1, + anon_sym_RPAREN, STATE(3542), 2, sym_line_comment, sym_block_comment, - [96892] = 4, + [96880] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - sym_raw_string_literal_content, + ACTIONS(6082), 1, + anon_sym_RPAREN, STATE(3543), 2, sym_line_comment, sym_block_comment, - [96906] = 4, + [96894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - sym_identifier, + ACTIONS(7162), 1, + sym__line_doc_content, STATE(3544), 2, sym_line_comment, sym_block_comment, - [96920] = 4, + [96908] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_SEMI, + ACTIONS(7164), 1, + sym_identifier, STATE(3545), 2, sym_line_comment, sym_block_comment, - [96934] = 4, + [96922] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_LBRACK, + ACTIONS(7166), 1, + anon_sym_RBRACK, STATE(3546), 2, sym_line_comment, sym_block_comment, - [96948] = 4, + [96936] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_RPAREN, + ACTIONS(7168), 1, + sym__raw_string_literal_end, STATE(3547), 2, sym_line_comment, sym_block_comment, - [96962] = 4, + [96950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_PLUS, + ACTIONS(889), 1, + anon_sym_RBRACK, STATE(3548), 2, sym_line_comment, sym_block_comment, - [96976] = 4, + [96964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - sym__raw_string_literal_end, + ACTIONS(7170), 1, + sym_identifier, STATE(3549), 2, sym_line_comment, sym_block_comment, - [96990] = 4, + [96978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_SEMI, + ACTIONS(7172), 1, + anon_sym_fn, STATE(3550), 2, sym_line_comment, sym_block_comment, - [97004] = 4, + [96992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, + ACTIONS(7174), 1, sym_identifier, STATE(3551), 2, sym_line_comment, sym_block_comment, - [97018] = 4, + [97006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_COLON_COLON, + ACTIONS(7176), 1, + anon_sym_SEMI, STATE(3552), 2, sym_line_comment, sym_block_comment, - [97032] = 4, + [97020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - sym_identifier, + ACTIONS(7178), 1, + anon_sym_SEMI, STATE(3553), 2, sym_line_comment, sym_block_comment, - [97046] = 4, + [97034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, + ACTIONS(7180), 1, + anon_sym_COLON, STATE(3554), 2, sym_line_comment, sym_block_comment, - [97060] = 4, + [97048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - sym_identifier, + ACTIONS(939), 1, + anon_sym_EQ_GT, STATE(3555), 2, sym_line_comment, sym_block_comment, - [97074] = 4, + [97062] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_COLON, + ACTIONS(6432), 1, + anon_sym_RBRACE, STATE(3556), 2, sym_line_comment, sym_block_comment, - [97088] = 4, + [97076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON_COLON, + ACTIONS(6617), 1, + anon_sym_RBRACE, STATE(3557), 2, sym_line_comment, sym_block_comment, - [97102] = 4, + [97090] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - anon_sym_RBRACK, + ACTIONS(7182), 1, + anon_sym_SEMI, STATE(3558), 2, sym_line_comment, sym_block_comment, - [97116] = 4, + [97104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, + ACTIONS(7184), 1, + sym_identifier, STATE(3559), 2, sym_line_comment, sym_block_comment, - [97130] = 4, + [97118] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_RBRACK, + ACTIONS(6646), 1, + anon_sym_GT, STATE(3560), 2, sym_line_comment, sym_block_comment, - [97144] = 4, + [97132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, + ACTIONS(7186), 1, sym_identifier, STATE(3561), 2, sym_line_comment, sym_block_comment, - [97158] = 4, + [97146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, + ACTIONS(6086), 1, anon_sym_RPAREN, STATE(3562), 2, sym_line_comment, sym_block_comment, - [97172] = 4, + [97160] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, + ACTIONS(7188), 1, + sym__line_doc_content, STATE(3563), 2, sym_line_comment, sym_block_comment, - [97186] = 4, + [97174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_EQ_GT, + ACTIONS(7190), 1, + sym_self, STATE(3564), 2, sym_line_comment, sym_block_comment, - [97200] = 4, + [97188] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5918), 1, + ACTIONS(7192), 1, anon_sym_RPAREN, STATE(3565), 2, sym_line_comment, sym_block_comment, - [97214] = 4, + [97202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - anon_sym_STAR_SLASH, + ACTIONS(7194), 1, + sym_identifier, STATE(3566), 2, sym_line_comment, sym_block_comment, - [97228] = 4, + [97216] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, + ACTIONS(7196), 1, + anon_sym_fn, STATE(3567), 2, sym_line_comment, sym_block_comment, - [97242] = 4, + [97230] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - sym__line_doc_content, + ACTIONS(7198), 1, + sym_identifier, STATE(3568), 2, sym_line_comment, sym_block_comment, - [97256] = 4, + [97244] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, + ACTIONS(6567), 1, + anon_sym_GT, STATE(3569), 2, sym_line_comment, sym_block_comment, - [97270] = 4, + [97258] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_EQ_GT, + ACTIONS(7200), 1, + anon_sym_SEMI, STATE(3570), 2, sym_line_comment, sym_block_comment, - [97284] = 4, + [97272] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_SEMI, + ACTIONS(6621), 1, + anon_sym_RBRACE, STATE(3571), 2, sym_line_comment, sym_block_comment, - [97298] = 4, + [97286] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - anon_sym_SEMI, + ACTIONS(7202), 1, + sym_identifier, STATE(3572), 2, sym_line_comment, sym_block_comment, - [97312] = 4, + [97300] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, + ACTIONS(7204), 1, + anon_sym_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [97326] = 4, + [97314] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - anon_sym_COLON, + ACTIONS(7206), 1, + sym_identifier, STATE(3574), 2, sym_line_comment, sym_block_comment, - [97340] = 4, + [97328] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - sym__raw_string_literal_end, + ACTIONS(6279), 1, + anon_sym_GT, STATE(3575), 2, sym_line_comment, sym_block_comment, - [97354] = 4, + [97342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, + ACTIONS(6212), 1, + anon_sym_COLON_COLON, STATE(3576), 2, sym_line_comment, sym_block_comment, - [97368] = 4, + [97356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, + ACTIONS(7208), 1, + anon_sym_RBRACE, STATE(3577), 2, sym_line_comment, sym_block_comment, - [97382] = 4, + [97370] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, + ACTIONS(7210), 1, + anon_sym_SEMI, STATE(3578), 2, sym_line_comment, sym_block_comment, - [97396] = 4, + [97384] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 1, - anon_sym_RPAREN, + ACTIONS(3206), 1, + anon_sym_PLUS, STATE(3579), 2, sym_line_comment, sym_block_comment, - [97410] = 4, + [97398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - anon_sym_RBRACE, + ACTIONS(5382), 1, + anon_sym_SEMI, STATE(3580), 2, sym_line_comment, sym_block_comment, - [97424] = 4, + [97412] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_LPAREN, + ACTIONS(7212), 1, + anon_sym_RPAREN, STATE(3581), 2, sym_line_comment, sym_block_comment, - [97438] = 4, + [97426] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_COLON, + ACTIONS(7214), 1, + anon_sym_SEMI, STATE(3582), 2, sym_line_comment, sym_block_comment, - [97452] = 4, + [97440] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - sym_identifier, + ACTIONS(7216), 1, + anon_sym_SEMI, STATE(3583), 2, sym_line_comment, sym_block_comment, - [97466] = 4, + [97454] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, + ACTIONS(7218), 1, anon_sym_SEMI, STATE(3584), 2, sym_line_comment, sym_block_comment, - [97480] = 4, + [97468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym_raw_string_literal_content, + ACTIONS(7220), 1, + sym_identifier, STATE(3585), 2, sym_line_comment, sym_block_comment, - [97494] = 4, + [97482] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4266), 1, - anon_sym_RPAREN, + ACTIONS(949), 1, + anon_sym_RBRACK, STATE(3586), 2, sym_line_comment, sym_block_comment, - [97508] = 4, + [97496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - anon_sym_SEMI, + ACTIONS(7222), 1, + anon_sym_RBRACK, STATE(3587), 2, sym_line_comment, sym_block_comment, - [97522] = 4, + [97510] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, + ACTIONS(7224), 1, + anon_sym_SEMI, STATE(3588), 2, sym_line_comment, sym_block_comment, - [97536] = 4, + [97524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, + ACTIONS(7226), 1, + sym_raw_string_literal_content, STATE(3589), 2, sym_line_comment, sym_block_comment, - [97550] = 4, + [97538] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(7228), 1, + anon_sym_SEMI, STATE(3590), 2, sym_line_comment, sym_block_comment, - [97564] = 4, + [97552] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, + ACTIONS(7230), 1, + anon_sym_SEMI, STATE(3591), 2, sym_line_comment, sym_block_comment, - [97578] = 4, + [97566] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - sym_identifier, + ACTIONS(7232), 1, + anon_sym_SEMI, STATE(3592), 2, sym_line_comment, sym_block_comment, - [97592] = 4, + [97580] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - sym_identifier, + ACTIONS(4270), 1, + anon_sym_COLON_COLON, STATE(3593), 2, sym_line_comment, sym_block_comment, - [97606] = 4, + [97594] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, + ACTIONS(6002), 1, anon_sym_COLON_COLON, STATE(3594), 2, sym_line_comment, sym_block_comment, - [97620] = 4, + [97608] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - sym_identifier, + ACTIONS(6734), 1, + anon_sym_RBRACE, STATE(3595), 2, sym_line_comment, sym_block_comment, - [97634] = 4, + [97622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, + ACTIONS(7234), 1, + ts_builtin_sym_end, STATE(3596), 2, sym_line_comment, sym_block_comment, - [97648] = 4, + [97636] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_SEMI, + ACTIONS(5719), 1, + anon_sym_RPAREN, STATE(3597), 2, sym_line_comment, sym_block_comment, - [97662] = 4, + [97650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, + ACTIONS(7236), 1, + anon_sym_COLON_COLON, STATE(3598), 2, sym_line_comment, sym_block_comment, - [97676] = 4, + [97664] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, + ACTIONS(7238), 1, anon_sym_SEMI, STATE(3599), 2, sym_line_comment, sym_block_comment, - [97690] = 4, + [97678] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_LT2, + ACTIONS(3808), 1, + anon_sym_COLON_COLON, STATE(3600), 2, sym_line_comment, sym_block_comment, - [97704] = 4, + [97692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_SEMI, + ACTIONS(7240), 1, + anon_sym_RPAREN, STATE(3601), 2, sym_line_comment, sym_block_comment, - [97718] = 4, + [97706] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - anon_sym_fn, + ACTIONS(7242), 1, + anon_sym_SEMI, STATE(3602), 2, sym_line_comment, sym_block_comment, - [97732] = 4, + [97720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - anon_sym_SEMI, + ACTIONS(3158), 1, + anon_sym_PLUS, STATE(3603), 2, sym_line_comment, sym_block_comment, - [97746] = 4, + [97734] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, - anon_sym_COLON_COLON, + ACTIONS(7244), 1, + anon_sym_LT2, STATE(3604), 2, sym_line_comment, sym_block_comment, - [97760] = 4, + [97748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, + ACTIONS(4282), 1, + anon_sym_RPAREN, STATE(3605), 2, sym_line_comment, sym_block_comment, - [97774] = 4, + [97762] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - anon_sym_SEMI, + ACTIONS(7246), 1, + anon_sym_fn, STATE(3606), 2, sym_line_comment, sym_block_comment, - [97788] = 4, + [97776] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_COLON_COLON, + ACTIONS(7248), 1, + anon_sym_STAR_SLASH, STATE(3607), 2, sym_line_comment, sym_block_comment, - [97802] = 4, + [97790] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_SEMI, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, STATE(3608), 2, sym_line_comment, sym_block_comment, - [97816] = 4, + [97804] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - anon_sym_SEMI, + ACTIONS(7252), 1, + anon_sym_EQ_GT, STATE(3609), 2, sym_line_comment, sym_block_comment, - [97830] = 4, + [97818] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, + ACTIONS(7254), 1, anon_sym_RBRACE, STATE(3610), 2, sym_line_comment, sym_block_comment, - [97844] = 4, + [97832] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(7256), 1, anon_sym_COLON_COLON, STATE(3611), 2, sym_line_comment, sym_block_comment, - [97858] = 4, + [97846] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, - anon_sym_COLON_COLON, + ACTIONS(6361), 1, + anon_sym_RBRACE, STATE(3612), 2, sym_line_comment, sym_block_comment, - [97872] = 4, + [97860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_fn, + ACTIONS(6684), 1, + anon_sym_GT, STATE(3613), 2, sym_line_comment, sym_block_comment, - [97886] = 4, + [97874] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_SEMI, + ACTIONS(7258), 1, + sym_identifier, STATE(3614), 2, sym_line_comment, sym_block_comment, - [97900] = 4, + [97888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - anon_sym_LBRACE, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, STATE(3615), 2, sym_line_comment, sym_block_comment, - [97914] = 4, + [97902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_SEMI, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, STATE(3616), 2, sym_line_comment, sym_block_comment, - [97928] = 4, + [97916] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, + ACTIONS(7262), 1, + anon_sym_fn, STATE(3617), 2, sym_line_comment, sym_block_comment, - [97942] = 4, + [97930] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_COLON_COLON, + ACTIONS(7264), 1, + anon_sym_SEMI, STATE(3618), 2, sym_line_comment, sym_block_comment, - [97956] = 4, + [97944] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_RBRACK, + ACTIONS(7266), 1, + anon_sym_LBRACE, STATE(3619), 2, sym_line_comment, sym_block_comment, - [97970] = 4, + [97958] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, + ACTIONS(7268), 1, sym_identifier, STATE(3620), 2, sym_line_comment, sym_block_comment, - [97984] = 4, + [97972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, + ACTIONS(7270), 1, + anon_sym_SEMI, STATE(3621), 2, sym_line_comment, sym_block_comment, - [97998] = 4, + [97986] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_SEMI, + ACTIONS(7272), 1, + anon_sym_RPAREN, STATE(3622), 2, sym_line_comment, sym_block_comment, - [98012] = 4, + [98000] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_identifier, + ACTIONS(6726), 1, + anon_sym_RBRACE, STATE(3623), 2, sym_line_comment, sym_block_comment, - [98026] = 4, + [98014] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - sym_raw_string_literal_content, + ACTIONS(7274), 1, + anon_sym_RBRACK, STATE(3624), 2, sym_line_comment, sym_block_comment, - [98040] = 4, + [98028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, + ACTIONS(7276), 1, + anon_sym_COLON, STATE(3625), 2, sym_line_comment, sym_block_comment, - [98054] = 4, + [98042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, + ACTIONS(7278), 1, sym_identifier, STATE(3626), 2, sym_line_comment, sym_block_comment, - [98068] = 4, + [98056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, + ACTIONS(7280), 1, sym_identifier, STATE(3627), 2, sym_line_comment, sym_block_comment, - [98082] = 4, + [98070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_COLON_COLON, + ACTIONS(7282), 1, + sym_raw_string_literal_content, STATE(3628), 2, sym_line_comment, sym_block_comment, - [98096] = 4, + [98084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RPAREN, + ACTIONS(7284), 1, + anon_sym_SEMI, STATE(3629), 2, sym_line_comment, sym_block_comment, - [98110] = 4, + [98098] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, + ACTIONS(7286), 1, + anon_sym_SEMI, STATE(3630), 2, sym_line_comment, sym_block_comment, - [98124] = 4, + [98112] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, + ACTIONS(7288), 1, anon_sym_COLON_COLON, STATE(3631), 2, sym_line_comment, sym_block_comment, - [98138] = 4, + [98126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - sym_identifier, + ACTIONS(7290), 1, + anon_sym_SEMI, STATE(3632), 2, sym_line_comment, sym_block_comment, - [98152] = 4, + [98140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, + ACTIONS(7292), 1, + anon_sym_COLON, STATE(3633), 2, sym_line_comment, sym_block_comment, - [98166] = 4, + [98154] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, + ACTIONS(7294), 1, anon_sym_COLON_COLON, STATE(3634), 2, sym_line_comment, sym_block_comment, - [98180] = 4, + [98168] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, + ACTIONS(7296), 1, sym_identifier, STATE(3635), 2, sym_line_comment, sym_block_comment, - [98194] = 4, + [98182] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_COLON, + ACTIONS(7298), 1, + sym_identifier, STATE(3636), 2, sym_line_comment, sym_block_comment, - [98208] = 4, + [98196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - sym_identifier, + ACTIONS(7300), 1, + anon_sym_COLON_COLON, STATE(3637), 2, sym_line_comment, sym_block_comment, - [98222] = 4, + [98210] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, - sym_identifier, + ACTIONS(7302), 1, + anon_sym_RBRACK, STATE(3638), 2, sym_line_comment, sym_block_comment, - [98236] = 4, + [98224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - anon_sym_COLON_COLON, + ACTIONS(7304), 1, + anon_sym_SEMI, STATE(3639), 2, sym_line_comment, sym_block_comment, - [98250] = 4, + [98238] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_LBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, STATE(3640), 2, sym_line_comment, sym_block_comment, - [98264] = 4, + [98252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, - anon_sym_LBRACK, + ACTIONS(7306), 1, + sym_raw_string_literal_content, STATE(3641), 2, sym_line_comment, sym_block_comment, - [98278] = 4, + [98266] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_fn, + ACTIONS(7308), 1, + anon_sym_COLON_COLON, STATE(3642), 2, sym_line_comment, sym_block_comment, - [98292] = 4, + [98280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5824), 1, - anon_sym_RBRACK, + ACTIONS(7310), 1, + anon_sym_LBRACE, STATE(3643), 2, sym_line_comment, sym_block_comment, - [98306] = 4, + [98294] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, + ACTIONS(7312), 1, anon_sym_SEMI, STATE(3644), 2, sym_line_comment, sym_block_comment, - [98320] = 4, + [98308] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - sym_raw_string_literal_content, + ACTIONS(6410), 1, + anon_sym_RBRACE, STATE(3645), 2, sym_line_comment, sym_block_comment, - [98334] = 4, + [98322] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + ACTIONS(7314), 1, + anon_sym_RBRACK, STATE(3646), 2, sym_line_comment, sym_block_comment, - [98348] = 4, + [98336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7316), 1, - anon_sym_RBRACK, + anon_sym_COLON, STATE(3647), 2, sym_line_comment, sym_block_comment, - [98362] = 4, + [98350] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7318), 1, - anon_sym_COLON_COLON, + sym_raw_string_literal_content, STATE(3648), 2, sym_line_comment, sym_block_comment, - [98376] = 4, + [98364] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - anon_sym_SEMI, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, STATE(3649), 2, sym_line_comment, sym_block_comment, - [98390] = 4, + [98378] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7320), 1, - anon_sym_COLON, + anon_sym_fn, STATE(3650), 2, sym_line_comment, sym_block_comment, - [98404] = 4, + [98392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7322), 1, - anon_sym_LBRACE, + anon_sym_COLON_COLON, STATE(3651), 2, sym_line_comment, sym_block_comment, - [98418] = 4, + [98406] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -194374,27 +194517,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(3652), 2, sym_line_comment, sym_block_comment, - [98432] = 4, + [98420] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5282), 1, + ACTIONS(4849), 1, anon_sym_COLON_COLON, STATE(3653), 2, sym_line_comment, sym_block_comment, - [98446] = 4, + [98434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7326), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, STATE(3654), 2, sym_line_comment, sym_block_comment, - [98460] = 4, + [98448] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -194404,907 +194547,907 @@ static const uint16_t ts_small_parse_table[] = { STATE(3655), 2, sym_line_comment, sym_block_comment, - [98474] = 4, + [98462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, - anon_sym_LBRACE, + ACTIONS(5286), 1, + anon_sym_COLON_COLON, STATE(3656), 2, sym_line_comment, sym_block_comment, - [98488] = 4, + [98476] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5798), 1, + ACTIONS(7330), 1, anon_sym_COLON_COLON, STATE(3657), 2, sym_line_comment, sym_block_comment, - [98502] = 4, + [98490] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, - anon_sym_COLON_COLON, + ACTIONS(7332), 1, + sym_identifier, STATE(3658), 2, sym_line_comment, sym_block_comment, - [98516] = 4, + [98504] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, + ACTIONS(6054), 1, anon_sym_LBRACE, STATE(3659), 2, sym_line_comment, sym_block_comment, - [98530] = 4, + [98518] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, + ACTIONS(5848), 1, anon_sym_COLON_COLON, STATE(3660), 2, sym_line_comment, sym_block_comment, - [98544] = 4, + [98532] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, + ACTIONS(7334), 1, anon_sym_COLON_COLON, STATE(3661), 2, sym_line_comment, sym_block_comment, - [98558] = 4, + [98546] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, + ACTIONS(6068), 1, + anon_sym_LBRACE, STATE(3662), 2, sym_line_comment, sym_block_comment, - [98572] = 4, + [98560] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, + ACTIONS(7336), 1, anon_sym_COLON_COLON, STATE(3663), 2, sym_line_comment, sym_block_comment, - [98586] = 4, + [98574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, + ACTIONS(5290), 1, anon_sym_COLON_COLON, STATE(3664), 2, sym_line_comment, sym_block_comment, - [98600] = 4, + [98588] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_SEMI, + ACTIONS(5294), 1, + anon_sym_COLON_COLON, STATE(3665), 2, sym_line_comment, sym_block_comment, - [98614] = 4, + [98602] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - sym_identifier, + ACTIONS(4326), 1, + anon_sym_COLON_COLON, STATE(3666), 2, sym_line_comment, sym_block_comment, - [98628] = 4, + [98616] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_SEMI, + ACTIONS(7338), 1, + anon_sym_COLON_COLON, STATE(3667), 2, sym_line_comment, sym_block_comment, - [98642] = 4, + [98630] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - sym_identifier, + ACTIONS(7340), 1, + anon_sym_COLON_COLON, STATE(3668), 2, sym_line_comment, sym_block_comment, - [98656] = 4, + [98644] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_EQ, STATE(3669), 2, sym_line_comment, sym_block_comment, - [98670] = 4, + [98658] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_LBRACK, + ACTIONS(6892), 1, + anon_sym_SEMI, STATE(3670), 2, sym_line_comment, sym_block_comment, - [98684] = 4, + [98672] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_SEMI, + ACTIONS(6714), 1, + anon_sym_RBRACE, STATE(3671), 2, sym_line_comment, sym_block_comment, - [98698] = 4, + [98686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - anon_sym_SEMI, + ACTIONS(7344), 1, + anon_sym_COLON, STATE(3672), 2, sym_line_comment, sym_block_comment, - [98712] = 4, + [98700] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, + ACTIONS(7346), 1, + anon_sym_LBRACK, STATE(3673), 2, sym_line_comment, sym_block_comment, - [98726] = 4, + [98714] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, + ACTIONS(7348), 1, + anon_sym_SEMI, STATE(3674), 2, sym_line_comment, sym_block_comment, - [98740] = 4, + [98728] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_SEMI, + ACTIONS(7350), 1, + sym_identifier, STATE(3675), 2, sym_line_comment, sym_block_comment, - [98754] = 4, + [98742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - anon_sym_LBRACK, + ACTIONS(7352), 1, + sym_identifier, STATE(3676), 2, sym_line_comment, sym_block_comment, - [98768] = 4, + [98756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, - anon_sym_COLON, + ACTIONS(7354), 1, + anon_sym_SEMI, STATE(3677), 2, sym_line_comment, sym_block_comment, - [98782] = 4, + [98770] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - anon_sym_COLON, + ACTIONS(7356), 1, + sym_identifier, STATE(3678), 2, sym_line_comment, sym_block_comment, - [98796] = 4, + [98784] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - sym_identifier, + ACTIONS(7358), 1, + anon_sym_LBRACK, STATE(3679), 2, sym_line_comment, sym_block_comment, - [98810] = 4, + [98798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, - sym_identifier, + ACTIONS(7360), 1, + anon_sym_COLON, STATE(3680), 2, sym_line_comment, sym_block_comment, - [98824] = 4, + [98812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - sym_identifier, + ACTIONS(7362), 1, + anon_sym_COLON, STATE(3681), 2, sym_line_comment, sym_block_comment, - [98838] = 4, + [98826] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_COLON, + ACTIONS(7364), 1, + sym_identifier, STATE(3682), 2, sym_line_comment, sym_block_comment, - [98852] = 4, + [98840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - anon_sym_COLON, + ACTIONS(7366), 1, + sym_identifier, STATE(3683), 2, sym_line_comment, sym_block_comment, - [98866] = 4, + [98854] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - sym_identifier, + ACTIONS(7368), 1, + anon_sym_SEMI, STATE(3684), 2, sym_line_comment, sym_block_comment, - [98880] = 4, + [98868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - sym_identifier, + ACTIONS(7370), 1, + anon_sym_SEMI, STATE(3685), 2, sym_line_comment, sym_block_comment, - [98894] = 4, + [98882] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - sym_identifier, + ACTIONS(7372), 1, + anon_sym_COLON, STATE(3686), 2, sym_line_comment, sym_block_comment, - [98908] = 4, + [98896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, + ACTIONS(6894), 1, anon_sym_SEMI, STATE(3687), 2, sym_line_comment, sym_block_comment, - [98922] = 4, + [98910] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - anon_sym_COLON, + ACTIONS(7374), 1, + sym_identifier, STATE(3688), 2, sym_line_comment, sym_block_comment, - [98936] = 4, + [98924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, + ACTIONS(7376), 1, + sym_identifier, STATE(3689), 2, sym_line_comment, sym_block_comment, - [98950] = 4, + [98938] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym__raw_string_literal_end, + ACTIONS(7378), 1, + sym_identifier, STATE(3690), 2, sym_line_comment, sym_block_comment, - [98964] = 4, + [98952] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, + ACTIONS(7380), 1, + sym_identifier, STATE(3691), 2, sym_line_comment, sym_block_comment, - [98978] = 4, + [98966] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, + ACTIONS(4252), 1, anon_sym_COLON_COLON, STATE(3692), 2, sym_line_comment, sym_block_comment, - [98992] = 4, + [98980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_COLON, + ACTIONS(5302), 1, + anon_sym_SEMI, STATE(3693), 2, sym_line_comment, sym_block_comment, - [99006] = 4, + [98994] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_EQ_GT, + ACTIONS(7382), 1, + anon_sym_SEMI, STATE(3694), 2, sym_line_comment, sym_block_comment, - [99020] = 4, + [99008] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, + ACTIONS(7384), 1, + sym_identifier, STATE(3695), 2, sym_line_comment, sym_block_comment, - [99034] = 4, + [99022] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_PLUS, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, STATE(3696), 2, sym_line_comment, sym_block_comment, - [99048] = 4, + [99036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, + ACTIONS(7386), 1, sym_identifier, STATE(3697), 2, sym_line_comment, sym_block_comment, - [99062] = 4, + [99050] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - anon_sym_COLON, + ACTIONS(7388), 1, + sym_identifier, STATE(3698), 2, sym_line_comment, sym_block_comment, - [99076] = 4, + [99064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - anon_sym_SEMI, + ACTIONS(7390), 1, + sym_identifier, STATE(3699), 2, sym_line_comment, sym_block_comment, - [99090] = 4, + [99078] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, + ACTIONS(7392), 1, anon_sym_SEMI, STATE(3700), 2, sym_line_comment, sym_block_comment, - [99104] = 4, + [99092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, - anon_sym_SEMI, + ACTIONS(7394), 1, + anon_sym_COLON, STATE(3701), 2, sym_line_comment, sym_block_comment, - [99118] = 4, + [99106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_COLON, + ACTIONS(7396), 1, + anon_sym_SEMI, STATE(3702), 2, sym_line_comment, sym_block_comment, - [99132] = 4, + [99120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, - anon_sym_SEMI, + ACTIONS(1027), 1, + anon_sym_RBRACK, STATE(3703), 2, sym_line_comment, sym_block_comment, - [99146] = 4, + [99134] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_SEMI, + ACTIONS(7398), 1, + anon_sym_EQ, STATE(3704), 2, sym_line_comment, sym_block_comment, - [99160] = 4, + [99148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_EQ_GT, + ACTIONS(7400), 1, + anon_sym_COLON, STATE(3705), 2, sym_line_comment, sym_block_comment, - [99174] = 4, + [99162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, - sym_identifier, + ACTIONS(7402), 1, + anon_sym_EQ_GT, STATE(3706), 2, sym_line_comment, sym_block_comment, - [99188] = 4, + [99176] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LBRACE, + ACTIONS(4702), 1, + anon_sym_fn, STATE(3707), 2, sym_line_comment, sym_block_comment, - [99202] = 4, + [99190] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_SEMI, + ACTIONS(744), 1, + anon_sym_RBRACK, STATE(3708), 2, sym_line_comment, sym_block_comment, - [99216] = 4, + [99204] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_RBRACK, + ACTIONS(7404), 1, + anon_sym_SEMI, STATE(3709), 2, sym_line_comment, sym_block_comment, - [99230] = 4, + [99218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, - anon_sym_SEMI, + ACTIONS(5911), 1, + anon_sym_RPAREN, STATE(3710), 2, sym_line_comment, sym_block_comment, - [99244] = 4, + [99232] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7406), 1, - anon_sym_COLON, + anon_sym_LBRACK, STATE(3711), 2, sym_line_comment, sym_block_comment, - [99258] = 4, + [99246] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, + ACTIONS(7408), 1, + anon_sym_RBRACE, STATE(3712), 2, sym_line_comment, sym_block_comment, - [99272] = 4, + [99260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_SEMI, + ACTIONS(7410), 1, + sym_identifier, STATE(3713), 2, sym_line_comment, sym_block_comment, - [99286] = 4, + [99274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, + ACTIONS(7412), 1, + anon_sym_COLON, STATE(3714), 2, sym_line_comment, sym_block_comment, - [99300] = 4, - ACTIONS(3), 1, + [99288] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - aux_sym_line_comment_token2, + ACTIONS(5915), 1, + anon_sym_RBRACK, STATE(3715), 2, sym_line_comment, sym_block_comment, - [99314] = 4, + [99302] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_SEMI, + ACTIONS(6593), 1, + anon_sym_RBRACE, STATE(3716), 2, sym_line_comment, sym_block_comment, - [99328] = 4, + [99316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, + ACTIONS(7414), 1, anon_sym_SEMI, STATE(3717), 2, sym_line_comment, sym_block_comment, - [99342] = 4, + [99330] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - anon_sym_EQ, + ACTIONS(6373), 1, + anon_sym_RBRACE, STATE(3718), 2, sym_line_comment, sym_block_comment, - [99356] = 4, + [99344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, + ACTIONS(5669), 1, + anon_sym_RPAREN, STATE(3719), 2, sym_line_comment, sym_block_comment, - [99370] = 4, + [99358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7416), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, STATE(3720), 2, sym_line_comment, sym_block_comment, - [99384] = 4, + [99372] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7418), 1, - sym_identifier, + anon_sym_EQ, STATE(3721), 2, sym_line_comment, sym_block_comment, - [99398] = 4, + [99386] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - anon_sym_SEMI, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, STATE(3722), 2, sym_line_comment, sym_block_comment, - [99412] = 4, + [99400] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, - anon_sym_RPAREN, + ACTIONS(7420), 1, + anon_sym_COLON, STATE(3723), 2, sym_line_comment, sym_block_comment, - [99426] = 4, + [99414] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, + ACTIONS(7422), 1, anon_sym_SEMI, STATE(3724), 2, sym_line_comment, sym_block_comment, - [99440] = 4, + [99428] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_LT2, + ACTIONS(5059), 1, + anon_sym_COLON_COLON, STATE(3725), 2, sym_line_comment, sym_block_comment, - [99454] = 4, + [99442] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, - anon_sym_COLON, + ACTIONS(4322), 1, + anon_sym_RPAREN, STATE(3726), 2, sym_line_comment, sym_block_comment, - [99468] = 4, + [99456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - anon_sym_EQ, + ACTIONS(7424), 1, + sym_identifier, STATE(3727), 2, sym_line_comment, sym_block_comment, - [99482] = 4, + [99470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - anon_sym_RPAREN, + ACTIONS(7426), 1, + anon_sym_SEMI, STATE(3728), 2, sym_line_comment, sym_block_comment, - [99496] = 4, + [99484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, + ACTIONS(7428), 1, anon_sym_COLON, STATE(3729), 2, sym_line_comment, sym_block_comment, - [99510] = 4, + [99498] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - anon_sym_LBRACK, + ACTIONS(7430), 1, + anon_sym_COLON, STATE(3730), 2, sym_line_comment, sym_block_comment, - [99524] = 4, + [99512] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - anon_sym_LBRACK, + ACTIONS(7432), 1, + anon_sym_EQ, STATE(3731), 2, sym_line_comment, sym_block_comment, - [99538] = 4, + [99526] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_COLON, + ACTIONS(7434), 1, + anon_sym_RBRACK, STATE(3732), 2, sym_line_comment, sym_block_comment, - [99552] = 4, + [99540] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_fn, + ACTIONS(7436), 1, + anon_sym_COLON, STATE(3733), 2, sym_line_comment, sym_block_comment, - [99566] = 4, + [99554] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(7438), 1, + anon_sym_LBRACK, STATE(3734), 2, sym_line_comment, sym_block_comment, - [99580] = 4, + [99568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, - anon_sym_COLON, + ACTIONS(7440), 1, + anon_sym_LBRACK, STATE(3735), 2, sym_line_comment, sym_block_comment, - [99594] = 4, + [99582] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, + ACTIONS(7442), 1, anon_sym_COLON, STATE(3736), 2, sym_line_comment, sym_block_comment, - [99608] = 4, + [99596] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, + ACTIONS(7444), 1, anon_sym_RBRACE, STATE(3737), 2, sym_line_comment, sym_block_comment, - [99622] = 4, - ACTIONS(103), 1, + [99610] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, - anon_sym_COLON_COLON, + ACTIONS(7446), 1, + aux_sym_line_comment_token2, STATE(3738), 2, sym_line_comment, sym_block_comment, - [99636] = 4, + [99624] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, + ACTIONS(7448), 1, anon_sym_COLON, STATE(3739), 2, sym_line_comment, sym_block_comment, - [99650] = 4, + [99638] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, + ACTIONS(7450), 1, anon_sym_COLON, STATE(3740), 2, sym_line_comment, sym_block_comment, - [99664] = 4, + [99652] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, - anon_sym_COLON, + ACTIONS(7452), 1, + anon_sym_LT2, STATE(3741), 2, sym_line_comment, sym_block_comment, - [99678] = 4, + [99666] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - sym_identifier, + ACTIONS(7454), 1, + anon_sym_SEMI, STATE(3742), 2, sym_line_comment, sym_block_comment, - [99692] = 4, + [99680] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, - anon_sym_fn, + ACTIONS(7456), 1, + anon_sym_COLON, STATE(3743), 2, sym_line_comment, sym_block_comment, - [99706] = 4, + [99694] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - anon_sym_GT, + ACTIONS(7458), 1, + anon_sym_COLON, STATE(3744), 2, sym_line_comment, sym_block_comment, - [99720] = 4, + [99708] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7460), 1, - anon_sym_SEMI, + anon_sym_COLON, STATE(3745), 2, sym_line_comment, sym_block_comment, - [99734] = 4, + [99722] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195314,137 +195457,137 @@ static const uint16_t ts_small_parse_table[] = { STATE(3746), 2, sym_line_comment, sym_block_comment, - [99748] = 4, + [99736] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_SEMI, + ACTIONS(4676), 1, + anon_sym_fn, STATE(3747), 2, sym_line_comment, sym_block_comment, - [99762] = 4, + [99750] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - anon_sym_EQ_GT, + ACTIONS(7464), 1, + anon_sym_fn, STATE(3748), 2, sym_line_comment, sym_block_comment, - [99776] = 4, + [99764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - sym__line_doc_content, + ACTIONS(7466), 1, + sym_identifier, STATE(3749), 2, sym_line_comment, sym_block_comment, - [99790] = 4, + [99778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - sym_identifier, + ACTIONS(3150), 1, + anon_sym_PLUS, STATE(3750), 2, sym_line_comment, sym_block_comment, - [99804] = 4, + [99792] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, + ACTIONS(7468), 1, + anon_sym_STAR_SLASH, STATE(3751), 2, sym_line_comment, sym_block_comment, - [99818] = 4, + [99806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, - anon_sym_SEMI, + ACTIONS(7470), 1, + anon_sym_COLON_COLON, STATE(3752), 2, sym_line_comment, sym_block_comment, - [99832] = 4, + [99820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, + ACTIONS(7472), 1, sym_identifier, STATE(3753), 2, sym_line_comment, sym_block_comment, - [99846] = 4, + [99834] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_fn, + ACTIONS(5643), 1, + anon_sym_RPAREN, STATE(3754), 2, sym_line_comment, sym_block_comment, - [99860] = 4, + [99848] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, - anon_sym_SEMI, + ACTIONS(7474), 1, + sym__raw_string_literal_end, STATE(3755), 2, sym_line_comment, sym_block_comment, - [99874] = 4, + [99862] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_COLON, + ACTIONS(7476), 1, + sym_identifier, STATE(3756), 2, sym_line_comment, sym_block_comment, - [99888] = 4, + [99876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, + ACTIONS(7478), 1, + anon_sym_fn, STATE(3757), 2, sym_line_comment, sym_block_comment, - [99902] = 4, + [99890] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_SEMI, + ACTIONS(7480), 1, + anon_sym_EQ_GT, STATE(3758), 2, sym_line_comment, sym_block_comment, - [99916] = 4, + [99904] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, + ACTIONS(7482), 1, anon_sym_COLON_COLON, STATE(3759), 2, sym_line_comment, sym_block_comment, - [99930] = 4, + [99918] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195454,37 +195597,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(3760), 2, sym_line_comment, sym_block_comment, - [99944] = 4, + [99932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7486), 1, - anon_sym_SEMI, + sym_identifier, STATE(3761), 2, sym_line_comment, sym_block_comment, - [99958] = 4, + [99946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7488), 1, - anon_sym_COLON, + sym__line_doc_content, STATE(3762), 2, sym_line_comment, sym_block_comment, - [99972] = 4, + [99960] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7490), 1, - sym_identifier, + anon_sym_RBRACK, STATE(3763), 2, sym_line_comment, sym_block_comment, - [99986] = 4, + [99974] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195494,47 +195637,47 @@ static const uint16_t ts_small_parse_table[] = { STATE(3764), 2, sym_line_comment, sym_block_comment, - [100000] = 4, + [99988] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7494), 1, - anon_sym_COLON_COLON, + sym_identifier, STATE(3765), 2, sym_line_comment, sym_block_comment, - [100014] = 4, + [100002] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7496), 1, - anon_sym_fn, + anon_sym_SEMI, STATE(3766), 2, sym_line_comment, sym_block_comment, - [100028] = 4, + [100016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7498), 1, - sym_identifier, + anon_sym_SEMI, STATE(3767), 2, sym_line_comment, sym_block_comment, - [100042] = 4, + [100030] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7500), 1, - sym_identifier, + anon_sym_LT, STATE(3768), 2, sym_line_comment, sym_block_comment, - [100056] = 4, + [100044] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195544,17 +195687,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(3769), 2, sym_line_comment, sym_block_comment, - [100070] = 4, + [100058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7504), 1, - anon_sym_SEMI, + anon_sym_COLON_COLON, STATE(3770), 2, sym_line_comment, sym_block_comment, - [100084] = 4, + [100072] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195564,7 +195707,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3771), 2, sym_line_comment, sym_block_comment, - [100098] = 4, + [100086] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195574,3269 +195717,3289 @@ static const uint16_t ts_small_parse_table[] = { STATE(3772), 2, sym_line_comment, sym_block_comment, - [100112] = 4, + [100100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - anon_sym_RBRACE, + ACTIONS(7510), 1, + sym_identifier, STATE(3773), 2, sym_line_comment, sym_block_comment, - [100126] = 4, + [100114] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, - anon_sym_fn, + ACTIONS(3840), 1, + anon_sym_COLON_COLON, STATE(3774), 2, sym_line_comment, sym_block_comment, - [100140] = 4, + [100128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, - anon_sym_RPAREN, + ACTIONS(7512), 1, + sym_identifier, STATE(3775), 2, sym_line_comment, sym_block_comment, - [100154] = 4, + [100142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, + ACTIONS(7514), 1, anon_sym_fn, STATE(3776), 2, sym_line_comment, sym_block_comment, - [100168] = 4, + [100156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_RBRACE, + ACTIONS(7516), 1, + sym_identifier, STATE(3777), 2, sym_line_comment, sym_block_comment, - [100182] = 1, - ACTIONS(7516), 1, - ts_builtin_sym_end, - [100186] = 1, + [100170] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7518), 1, - ts_builtin_sym_end, - [100190] = 1, + anon_sym_fn, + STATE(3778), 2, + sym_line_comment, + sym_block_comment, + [100184] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4136), 1, + sym_identifier, + STATE(3779), 2, + sym_line_comment, + sym_block_comment, + [100198] = 1, ACTIONS(7520), 1, ts_builtin_sym_end, - [100194] = 1, + [100202] = 1, ACTIONS(7522), 1, ts_builtin_sym_end, - [100198] = 1, + [100206] = 1, ACTIONS(7524), 1, ts_builtin_sym_end, - [100202] = 1, + [100210] = 1, ACTIONS(7526), 1, ts_builtin_sym_end, - [100206] = 1, + [100214] = 1, ACTIONS(7528), 1, ts_builtin_sym_end, + [100218] = 1, + ACTIONS(7530), 1, + ts_builtin_sym_end, + [100222] = 1, + ACTIONS(7532), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1054)] = 0, - [SMALL_STATE(1055)] = 75, - [SMALL_STATE(1056)] = 148, - [SMALL_STATE(1057)] = 219, - [SMALL_STATE(1058)] = 319, - [SMALL_STATE(1059)] = 419, - [SMALL_STATE(1060)] = 519, - [SMALL_STATE(1061)] = 598, - [SMALL_STATE(1062)] = 675, - [SMALL_STATE(1063)] = 752, - [SMALL_STATE(1064)] = 829, - [SMALL_STATE(1065)] = 897, - [SMALL_STATE(1066)] = 961, - [SMALL_STATE(1067)] = 1025, - [SMALL_STATE(1068)] = 1089, - [SMALL_STATE(1069)] = 1153, - [SMALL_STATE(1070)] = 1217, - [SMALL_STATE(1071)] = 1281, - [SMALL_STATE(1072)] = 1345, - [SMALL_STATE(1073)] = 1419, - [SMALL_STATE(1074)] = 1483, - [SMALL_STATE(1075)] = 1547, - [SMALL_STATE(1076)] = 1610, - [SMALL_STATE(1077)] = 1711, - [SMALL_STATE(1078)] = 1812, - [SMALL_STATE(1079)] = 1879, - [SMALL_STATE(1080)] = 1946, - [SMALL_STATE(1081)] = 2013, - [SMALL_STATE(1082)] = 2076, - [SMALL_STATE(1083)] = 2143, - [SMALL_STATE(1084)] = 2206, - [SMALL_STATE(1085)] = 2273, - [SMALL_STATE(1086)] = 2344, - [SMALL_STATE(1087)] = 2415, - [SMALL_STATE(1088)] = 2486, - [SMALL_STATE(1089)] = 2587, - [SMALL_STATE(1090)] = 2650, - [SMALL_STATE(1091)] = 2721, - [SMALL_STATE(1092)] = 2784, - [SMALL_STATE(1093)] = 2846, - [SMALL_STATE(1094)] = 2908, - [SMALL_STATE(1095)] = 2970, - [SMALL_STATE(1096)] = 3034, - [SMALL_STATE(1097)] = 3098, - [SMALL_STATE(1098)] = 3160, - [SMALL_STATE(1099)] = 3222, - [SMALL_STATE(1100)] = 3284, - [SMALL_STATE(1101)] = 3354, - [SMALL_STATE(1102)] = 3422, - [SMALL_STATE(1103)] = 3484, - [SMALL_STATE(1104)] = 3546, - [SMALL_STATE(1105)] = 3621, - [SMALL_STATE(1106)] = 3684, - [SMALL_STATE(1107)] = 3745, - [SMALL_STATE(1108)] = 3808, - [SMALL_STATE(1109)] = 3869, - [SMALL_STATE(1110)] = 3930, - [SMALL_STATE(1111)] = 3993, - [SMALL_STATE(1112)] = 4054, - [SMALL_STATE(1113)] = 4115, - [SMALL_STATE(1114)] = 4176, - [SMALL_STATE(1115)] = 4237, - [SMALL_STATE(1116)] = 4298, - [SMALL_STATE(1117)] = 4391, - [SMALL_STATE(1118)] = 4454, - [SMALL_STATE(1119)] = 4517, - [SMALL_STATE(1120)] = 4580, - [SMALL_STATE(1121)] = 4641, - [SMALL_STATE(1122)] = 4702, - [SMALL_STATE(1123)] = 4795, - [SMALL_STATE(1124)] = 4856, - [SMALL_STATE(1125)] = 4949, - [SMALL_STATE(1126)] = 5010, - [SMALL_STATE(1127)] = 5071, - [SMALL_STATE(1128)] = 5132, - [SMALL_STATE(1129)] = 5195, - [SMALL_STATE(1130)] = 5258, - [SMALL_STATE(1131)] = 5321, - [SMALL_STATE(1132)] = 5384, - [SMALL_STATE(1133)] = 5447, - [SMALL_STATE(1134)] = 5508, - [SMALL_STATE(1135)] = 5573, - [SMALL_STATE(1136)] = 5634, - [SMALL_STATE(1137)] = 5695, - [SMALL_STATE(1138)] = 5756, - [SMALL_STATE(1139)] = 5817, - [SMALL_STATE(1140)] = 5878, - [SMALL_STATE(1141)] = 5939, - [SMALL_STATE(1142)] = 6000, - [SMALL_STATE(1143)] = 6061, - [SMALL_STATE(1144)] = 6122, - [SMALL_STATE(1145)] = 6183, - [SMALL_STATE(1146)] = 6244, - [SMALL_STATE(1147)] = 6305, - [SMALL_STATE(1148)] = 6366, - [SMALL_STATE(1149)] = 6427, - [SMALL_STATE(1150)] = 6488, - [SMALL_STATE(1151)] = 6549, - [SMALL_STATE(1152)] = 6610, - [SMALL_STATE(1153)] = 6671, - [SMALL_STATE(1154)] = 6734, - [SMALL_STATE(1155)] = 6797, - [SMALL_STATE(1156)] = 6860, - [SMALL_STATE(1157)] = 6921, - [SMALL_STATE(1158)] = 6982, - [SMALL_STATE(1159)] = 7043, - [SMALL_STATE(1160)] = 7104, - [SMALL_STATE(1161)] = 7165, - [SMALL_STATE(1162)] = 7226, - [SMALL_STATE(1163)] = 7287, - [SMALL_STATE(1164)] = 7348, - [SMALL_STATE(1165)] = 7409, - [SMALL_STATE(1166)] = 7470, - [SMALL_STATE(1167)] = 7531, - [SMALL_STATE(1168)] = 7592, - [SMALL_STATE(1169)] = 7653, - [SMALL_STATE(1170)] = 7714, - [SMALL_STATE(1171)] = 7775, - [SMALL_STATE(1172)] = 7836, - [SMALL_STATE(1173)] = 7897, - [SMALL_STATE(1174)] = 7958, - [SMALL_STATE(1175)] = 8019, - [SMALL_STATE(1176)] = 8080, - [SMALL_STATE(1177)] = 8141, - [SMALL_STATE(1178)] = 8202, - [SMALL_STATE(1179)] = 8263, - [SMALL_STATE(1180)] = 8324, - [SMALL_STATE(1181)] = 8385, - [SMALL_STATE(1182)] = 8446, - [SMALL_STATE(1183)] = 8507, - [SMALL_STATE(1184)] = 8568, - [SMALL_STATE(1185)] = 8629, - [SMALL_STATE(1186)] = 8690, - [SMALL_STATE(1187)] = 8751, - [SMALL_STATE(1188)] = 8812, - [SMALL_STATE(1189)] = 8873, - [SMALL_STATE(1190)] = 8934, - [SMALL_STATE(1191)] = 8995, - [SMALL_STATE(1192)] = 9056, - [SMALL_STATE(1193)] = 9117, - [SMALL_STATE(1194)] = 9178, - [SMALL_STATE(1195)] = 9241, - [SMALL_STATE(1196)] = 9304, - [SMALL_STATE(1197)] = 9365, - [SMALL_STATE(1198)] = 9426, - [SMALL_STATE(1199)] = 9487, - [SMALL_STATE(1200)] = 9548, - [SMALL_STATE(1201)] = 9609, - [SMALL_STATE(1202)] = 9670, - [SMALL_STATE(1203)] = 9731, - [SMALL_STATE(1204)] = 9792, - [SMALL_STATE(1205)] = 9853, - [SMALL_STATE(1206)] = 9914, - [SMALL_STATE(1207)] = 9975, - [SMALL_STATE(1208)] = 10036, - [SMALL_STATE(1209)] = 10097, - [SMALL_STATE(1210)] = 10158, - [SMALL_STATE(1211)] = 10219, - [SMALL_STATE(1212)] = 10280, - [SMALL_STATE(1213)] = 10341, - [SMALL_STATE(1214)] = 10402, - [SMALL_STATE(1215)] = 10463, - [SMALL_STATE(1216)] = 10524, - [SMALL_STATE(1217)] = 10585, - [SMALL_STATE(1218)] = 10646, - [SMALL_STATE(1219)] = 10707, - [SMALL_STATE(1220)] = 10768, - [SMALL_STATE(1221)] = 10829, - [SMALL_STATE(1222)] = 10890, - [SMALL_STATE(1223)] = 10951, - [SMALL_STATE(1224)] = 11012, - [SMALL_STATE(1225)] = 11073, - [SMALL_STATE(1226)] = 11134, - [SMALL_STATE(1227)] = 11195, - [SMALL_STATE(1228)] = 11256, - [SMALL_STATE(1229)] = 11317, - [SMALL_STATE(1230)] = 11378, - [SMALL_STATE(1231)] = 11439, - [SMALL_STATE(1232)] = 11500, - [SMALL_STATE(1233)] = 11561, - [SMALL_STATE(1234)] = 11622, - [SMALL_STATE(1235)] = 11683, - [SMALL_STATE(1236)] = 11744, - [SMALL_STATE(1237)] = 11805, - [SMALL_STATE(1238)] = 11866, - [SMALL_STATE(1239)] = 11927, - [SMALL_STATE(1240)] = 11988, - [SMALL_STATE(1241)] = 12049, - [SMALL_STATE(1242)] = 12110, - [SMALL_STATE(1243)] = 12171, - [SMALL_STATE(1244)] = 12232, - [SMALL_STATE(1245)] = 12293, - [SMALL_STATE(1246)] = 12354, - [SMALL_STATE(1247)] = 12415, - [SMALL_STATE(1248)] = 12476, - [SMALL_STATE(1249)] = 12537, - [SMALL_STATE(1250)] = 12598, - [SMALL_STATE(1251)] = 12659, - [SMALL_STATE(1252)] = 12720, - [SMALL_STATE(1253)] = 12781, - [SMALL_STATE(1254)] = 12842, - [SMALL_STATE(1255)] = 12903, - [SMALL_STATE(1256)] = 12964, - [SMALL_STATE(1257)] = 13025, - [SMALL_STATE(1258)] = 13086, - [SMALL_STATE(1259)] = 13147, - [SMALL_STATE(1260)] = 13208, - [SMALL_STATE(1261)] = 13269, - [SMALL_STATE(1262)] = 13330, - [SMALL_STATE(1263)] = 13391, - [SMALL_STATE(1264)] = 13452, - [SMALL_STATE(1265)] = 13513, - [SMALL_STATE(1266)] = 13574, - [SMALL_STATE(1267)] = 13635, - [SMALL_STATE(1268)] = 13696, - [SMALL_STATE(1269)] = 13757, - [SMALL_STATE(1270)] = 13818, - [SMALL_STATE(1271)] = 13879, - [SMALL_STATE(1272)] = 13940, - [SMALL_STATE(1273)] = 14001, - [SMALL_STATE(1274)] = 14062, - [SMALL_STATE(1275)] = 14123, - [SMALL_STATE(1276)] = 14184, - [SMALL_STATE(1277)] = 14247, - [SMALL_STATE(1278)] = 14308, - [SMALL_STATE(1279)] = 14369, - [SMALL_STATE(1280)] = 14430, - [SMALL_STATE(1281)] = 14491, - [SMALL_STATE(1282)] = 14552, - [SMALL_STATE(1283)] = 14613, - [SMALL_STATE(1284)] = 14674, - [SMALL_STATE(1285)] = 14735, - [SMALL_STATE(1286)] = 14796, - [SMALL_STATE(1287)] = 14857, - [SMALL_STATE(1288)] = 14918, - [SMALL_STATE(1289)] = 14979, - [SMALL_STATE(1290)] = 15040, - [SMALL_STATE(1291)] = 15101, - [SMALL_STATE(1292)] = 15162, - [SMALL_STATE(1293)] = 15223, - [SMALL_STATE(1294)] = 15284, - [SMALL_STATE(1295)] = 15345, - [SMALL_STATE(1296)] = 15406, - [SMALL_STATE(1297)] = 15467, - [SMALL_STATE(1298)] = 15528, - [SMALL_STATE(1299)] = 15589, - [SMALL_STATE(1300)] = 15650, - [SMALL_STATE(1301)] = 15711, - [SMALL_STATE(1302)] = 15772, - [SMALL_STATE(1303)] = 15833, - [SMALL_STATE(1304)] = 15894, - [SMALL_STATE(1305)] = 15955, - [SMALL_STATE(1306)] = 16016, - [SMALL_STATE(1307)] = 16077, - [SMALL_STATE(1308)] = 16138, - [SMALL_STATE(1309)] = 16199, - [SMALL_STATE(1310)] = 16260, - [SMALL_STATE(1311)] = 16321, - [SMALL_STATE(1312)] = 16382, - [SMALL_STATE(1313)] = 16443, - [SMALL_STATE(1314)] = 16504, - [SMALL_STATE(1315)] = 16565, - [SMALL_STATE(1316)] = 16626, - [SMALL_STATE(1317)] = 16687, - [SMALL_STATE(1318)] = 16748, - [SMALL_STATE(1319)] = 16809, - [SMALL_STATE(1320)] = 16870, - [SMALL_STATE(1321)] = 16931, - [SMALL_STATE(1322)] = 16992, - [SMALL_STATE(1323)] = 17053, - [SMALL_STATE(1324)] = 17114, - [SMALL_STATE(1325)] = 17175, - [SMALL_STATE(1326)] = 17236, - [SMALL_STATE(1327)] = 17297, - [SMALL_STATE(1328)] = 17358, - [SMALL_STATE(1329)] = 17419, - [SMALL_STATE(1330)] = 17480, - [SMALL_STATE(1331)] = 17541, - [SMALL_STATE(1332)] = 17602, - [SMALL_STATE(1333)] = 17663, - [SMALL_STATE(1334)] = 17724, - [SMALL_STATE(1335)] = 17785, - [SMALL_STATE(1336)] = 17846, - [SMALL_STATE(1337)] = 17907, - [SMALL_STATE(1338)] = 17968, - [SMALL_STATE(1339)] = 18029, - [SMALL_STATE(1340)] = 18090, - [SMALL_STATE(1341)] = 18151, - [SMALL_STATE(1342)] = 18212, - [SMALL_STATE(1343)] = 18273, - [SMALL_STATE(1344)] = 18334, - [SMALL_STATE(1345)] = 18395, - [SMALL_STATE(1346)] = 18456, - [SMALL_STATE(1347)] = 18517, - [SMALL_STATE(1348)] = 18578, - [SMALL_STATE(1349)] = 18639, - [SMALL_STATE(1350)] = 18700, - [SMALL_STATE(1351)] = 18761, - [SMALL_STATE(1352)] = 18822, - [SMALL_STATE(1353)] = 18883, - [SMALL_STATE(1354)] = 18944, - [SMALL_STATE(1355)] = 19005, - [SMALL_STATE(1356)] = 19066, - [SMALL_STATE(1357)] = 19127, - [SMALL_STATE(1358)] = 19188, - [SMALL_STATE(1359)] = 19249, - [SMALL_STATE(1360)] = 19310, - [SMALL_STATE(1361)] = 19371, - [SMALL_STATE(1362)] = 19432, - [SMALL_STATE(1363)] = 19493, - [SMALL_STATE(1364)] = 19554, - [SMALL_STATE(1365)] = 19615, - [SMALL_STATE(1366)] = 19676, - [SMALL_STATE(1367)] = 19737, - [SMALL_STATE(1368)] = 19798, - [SMALL_STATE(1369)] = 19859, - [SMALL_STATE(1370)] = 19920, - [SMALL_STATE(1371)] = 19981, - [SMALL_STATE(1372)] = 20042, - [SMALL_STATE(1373)] = 20103, - [SMALL_STATE(1374)] = 20164, - [SMALL_STATE(1375)] = 20225, - [SMALL_STATE(1376)] = 20286, - [SMALL_STATE(1377)] = 20347, - [SMALL_STATE(1378)] = 20408, - [SMALL_STATE(1379)] = 20469, - [SMALL_STATE(1380)] = 20530, - [SMALL_STATE(1381)] = 20591, - [SMALL_STATE(1382)] = 20652, - [SMALL_STATE(1383)] = 20713, - [SMALL_STATE(1384)] = 20774, - [SMALL_STATE(1385)] = 20835, - [SMALL_STATE(1386)] = 20896, - [SMALL_STATE(1387)] = 20957, - [SMALL_STATE(1388)] = 21018, - [SMALL_STATE(1389)] = 21079, - [SMALL_STATE(1390)] = 21140, - [SMALL_STATE(1391)] = 21201, - [SMALL_STATE(1392)] = 21262, - [SMALL_STATE(1393)] = 21323, - [SMALL_STATE(1394)] = 21384, - [SMALL_STATE(1395)] = 21445, - [SMALL_STATE(1396)] = 21506, - [SMALL_STATE(1397)] = 21567, - [SMALL_STATE(1398)] = 21628, - [SMALL_STATE(1399)] = 21689, - [SMALL_STATE(1400)] = 21750, - [SMALL_STATE(1401)] = 21811, - [SMALL_STATE(1402)] = 21872, - [SMALL_STATE(1403)] = 21933, - [SMALL_STATE(1404)] = 21994, - [SMALL_STATE(1405)] = 22055, - [SMALL_STATE(1406)] = 22116, - [SMALL_STATE(1407)] = 22177, - [SMALL_STATE(1408)] = 22238, - [SMALL_STATE(1409)] = 22299, - [SMALL_STATE(1410)] = 22364, - [SMALL_STATE(1411)] = 22425, - [SMALL_STATE(1412)] = 22486, - [SMALL_STATE(1413)] = 22547, - [SMALL_STATE(1414)] = 22608, - [SMALL_STATE(1415)] = 22669, - [SMALL_STATE(1416)] = 22730, - [SMALL_STATE(1417)] = 22795, - [SMALL_STATE(1418)] = 22870, - [SMALL_STATE(1419)] = 22933, - [SMALL_STATE(1420)] = 22994, - [SMALL_STATE(1421)] = 23068, - [SMALL_STATE(1422)] = 23128, - [SMALL_STATE(1423)] = 23188, - [SMALL_STATE(1424)] = 23248, - [SMALL_STATE(1425)] = 23308, - [SMALL_STATE(1426)] = 23368, - [SMALL_STATE(1427)] = 23428, - [SMALL_STATE(1428)] = 23488, - [SMALL_STATE(1429)] = 23548, - [SMALL_STATE(1430)] = 23608, - [SMALL_STATE(1431)] = 23670, - [SMALL_STATE(1432)] = 23730, - [SMALL_STATE(1433)] = 23790, - [SMALL_STATE(1434)] = 23850, - [SMALL_STATE(1435)] = 23916, - [SMALL_STATE(1436)] = 23976, - [SMALL_STATE(1437)] = 24036, - [SMALL_STATE(1438)] = 24096, - [SMALL_STATE(1439)] = 24162, - [SMALL_STATE(1440)] = 24222, - [SMALL_STATE(1441)] = 24282, - [SMALL_STATE(1442)] = 24342, - [SMALL_STATE(1443)] = 24402, - [SMALL_STATE(1444)] = 24462, - [SMALL_STATE(1445)] = 24522, - [SMALL_STATE(1446)] = 24582, - [SMALL_STATE(1447)] = 24642, - [SMALL_STATE(1448)] = 24708, - [SMALL_STATE(1449)] = 24768, - [SMALL_STATE(1450)] = 24828, - [SMALL_STATE(1451)] = 24888, - [SMALL_STATE(1452)] = 24948, - [SMALL_STATE(1453)] = 25008, - [SMALL_STATE(1454)] = 25068, - [SMALL_STATE(1455)] = 25128, - [SMALL_STATE(1456)] = 25188, - [SMALL_STATE(1457)] = 25248, - [SMALL_STATE(1458)] = 25308, - [SMALL_STATE(1459)] = 25368, - [SMALL_STATE(1460)] = 25428, - [SMALL_STATE(1461)] = 25488, - [SMALL_STATE(1462)] = 25548, - [SMALL_STATE(1463)] = 25608, - [SMALL_STATE(1464)] = 25668, - [SMALL_STATE(1465)] = 25728, - [SMALL_STATE(1466)] = 25788, - [SMALL_STATE(1467)] = 25848, - [SMALL_STATE(1468)] = 25908, - [SMALL_STATE(1469)] = 25968, - [SMALL_STATE(1470)] = 26028, - [SMALL_STATE(1471)] = 26088, - [SMALL_STATE(1472)] = 26148, - [SMALL_STATE(1473)] = 26208, - [SMALL_STATE(1474)] = 26268, - [SMALL_STATE(1475)] = 26328, - [SMALL_STATE(1476)] = 26388, - [SMALL_STATE(1477)] = 26448, - [SMALL_STATE(1478)] = 26508, - [SMALL_STATE(1479)] = 26568, - [SMALL_STATE(1480)] = 26628, - [SMALL_STATE(1481)] = 26688, - [SMALL_STATE(1482)] = 26748, - [SMALL_STATE(1483)] = 26844, - [SMALL_STATE(1484)] = 26904, - [SMALL_STATE(1485)] = 26964, - [SMALL_STATE(1486)] = 27024, - [SMALL_STATE(1487)] = 27084, - [SMALL_STATE(1488)] = 27144, - [SMALL_STATE(1489)] = 27206, - [SMALL_STATE(1490)] = 27266, - [SMALL_STATE(1491)] = 27326, - [SMALL_STATE(1492)] = 27386, - [SMALL_STATE(1493)] = 27446, - [SMALL_STATE(1494)] = 27506, - [SMALL_STATE(1495)] = 27566, - [SMALL_STATE(1496)] = 27634, - [SMALL_STATE(1497)] = 27694, - [SMALL_STATE(1498)] = 27754, - [SMALL_STATE(1499)] = 27814, - [SMALL_STATE(1500)] = 27874, - [SMALL_STATE(1501)] = 27934, - [SMALL_STATE(1502)] = 27994, - [SMALL_STATE(1503)] = 28054, - [SMALL_STATE(1504)] = 28114, - [SMALL_STATE(1505)] = 28174, - [SMALL_STATE(1506)] = 28234, - [SMALL_STATE(1507)] = 28294, - [SMALL_STATE(1508)] = 28354, - [SMALL_STATE(1509)] = 28418, - [SMALL_STATE(1510)] = 28478, - [SMALL_STATE(1511)] = 28538, - [SMALL_STATE(1512)] = 28598, - [SMALL_STATE(1513)] = 28658, - [SMALL_STATE(1514)] = 28718, - [SMALL_STATE(1515)] = 28778, - [SMALL_STATE(1516)] = 28838, - [SMALL_STATE(1517)] = 28898, - [SMALL_STATE(1518)] = 28958, - [SMALL_STATE(1519)] = 29018, - [SMALL_STATE(1520)] = 29078, - [SMALL_STATE(1521)] = 29138, - [SMALL_STATE(1522)] = 29198, - [SMALL_STATE(1523)] = 29258, - [SMALL_STATE(1524)] = 29318, - [SMALL_STATE(1525)] = 29378, - [SMALL_STATE(1526)] = 29438, - [SMALL_STATE(1527)] = 29498, - [SMALL_STATE(1528)] = 29558, - [SMALL_STATE(1529)] = 29618, - [SMALL_STATE(1530)] = 29678, - [SMALL_STATE(1531)] = 29738, - [SMALL_STATE(1532)] = 29802, - [SMALL_STATE(1533)] = 29862, - [SMALL_STATE(1534)] = 29922, - [SMALL_STATE(1535)] = 29982, - [SMALL_STATE(1536)] = 30042, - [SMALL_STATE(1537)] = 30102, - [SMALL_STATE(1538)] = 30162, - [SMALL_STATE(1539)] = 30228, - [SMALL_STATE(1540)] = 30288, - [SMALL_STATE(1541)] = 30387, - [SMALL_STATE(1542)] = 30486, - [SMALL_STATE(1543)] = 30555, - [SMALL_STATE(1544)] = 30626, - [SMALL_STATE(1545)] = 30687, - [SMALL_STATE(1546)] = 30748, - [SMALL_STATE(1547)] = 30847, - [SMALL_STATE(1548)] = 30946, - [SMALL_STATE(1549)] = 31016, - [SMALL_STATE(1550)] = 31098, - [SMALL_STATE(1551)] = 31182, - [SMALL_STATE(1552)] = 31272, - [SMALL_STATE(1553)] = 31342, - [SMALL_STATE(1554)] = 31412, - [SMALL_STATE(1555)] = 31482, - [SMALL_STATE(1556)] = 31572, - [SMALL_STATE(1557)] = 31630, - [SMALL_STATE(1558)] = 31720, - [SMALL_STATE(1559)] = 31798, - [SMALL_STATE(1560)] = 31856, - [SMALL_STATE(1561)] = 31948, - [SMALL_STATE(1562)] = 32006, - [SMALL_STATE(1563)] = 32066, - [SMALL_STATE(1564)] = 32156, - [SMALL_STATE(1565)] = 32222, - [SMALL_STATE(1566)] = 32308, - [SMALL_STATE(1567)] = 32394, - [SMALL_STATE(1568)] = 32480, - [SMALL_STATE(1569)] = 32570, - [SMALL_STATE(1570)] = 32656, - [SMALL_STATE(1571)] = 32742, - [SMALL_STATE(1572)] = 32828, - [SMALL_STATE(1573)] = 32920, - [SMALL_STATE(1574)] = 33010, - [SMALL_STATE(1575)] = 33102, - [SMALL_STATE(1576)] = 33188, - [SMALL_STATE(1577)] = 33256, - [SMALL_STATE(1578)] = 33342, - [SMALL_STATE(1579)] = 33416, - [SMALL_STATE(1580)] = 33488, - [SMALL_STATE(1581)] = 33564, - [SMALL_STATE(1582)] = 33624, - [SMALL_STATE(1583)] = 33687, - [SMALL_STATE(1584)] = 33752, - [SMALL_STATE(1585)] = 33819, - [SMALL_STATE(1586)] = 33882, - [SMALL_STATE(1587)] = 33942, - [SMALL_STATE(1588)] = 34000, - [SMALL_STATE(1589)] = 34058, - [SMALL_STATE(1590)] = 34118, - [SMALL_STATE(1591)] = 34176, - [SMALL_STATE(1592)] = 34236, - [SMALL_STATE(1593)] = 34292, - [SMALL_STATE(1594)] = 34348, - [SMALL_STATE(1595)] = 34408, - [SMALL_STATE(1596)] = 34468, - [SMALL_STATE(1597)] = 34528, - [SMALL_STATE(1598)] = 34592, - [SMALL_STATE(1599)] = 34656, - [SMALL_STATE(1600)] = 34712, - [SMALL_STATE(1601)] = 34776, - [SMALL_STATE(1602)] = 34836, - [SMALL_STATE(1603)] = 34894, - [SMALL_STATE(1604)] = 34958, - [SMALL_STATE(1605)] = 35014, - [SMALL_STATE(1606)] = 35103, - [SMALL_STATE(1607)] = 35162, - [SMALL_STATE(1608)] = 35251, - [SMALL_STATE(1609)] = 35308, - [SMALL_STATE(1610)] = 35365, - [SMALL_STATE(1611)] = 35460, - [SMALL_STATE(1612)] = 35515, - [SMALL_STATE(1613)] = 35570, - [SMALL_STATE(1614)] = 35625, - [SMALL_STATE(1615)] = 35720, - [SMALL_STATE(1616)] = 35779, - [SMALL_STATE(1617)] = 35836, - [SMALL_STATE(1618)] = 35891, - [SMALL_STATE(1619)] = 35946, - [SMALL_STATE(1620)] = 36041, - [SMALL_STATE(1621)] = 36100, - [SMALL_STATE(1622)] = 36155, - [SMALL_STATE(1623)] = 36250, - [SMALL_STATE(1624)] = 36309, - [SMALL_STATE(1625)] = 36404, - [SMALL_STATE(1626)] = 36499, - [SMALL_STATE(1627)] = 36594, - [SMALL_STATE(1628)] = 36689, - [SMALL_STATE(1629)] = 36784, - [SMALL_STATE(1630)] = 36879, - [SMALL_STATE(1631)] = 36936, - [SMALL_STATE(1632)] = 36993, - [SMALL_STATE(1633)] = 37048, - [SMALL_STATE(1634)] = 37105, - [SMALL_STATE(1635)] = 37194, - [SMALL_STATE(1636)] = 37249, - [SMALL_STATE(1637)] = 37306, - [SMALL_STATE(1638)] = 37401, - [SMALL_STATE(1639)] = 37490, - [SMALL_STATE(1640)] = 37585, - [SMALL_STATE(1641)] = 37641, - [SMALL_STATE(1642)] = 37695, - [SMALL_STATE(1643)] = 37749, - [SMALL_STATE(1644)] = 37803, - [SMALL_STATE(1645)] = 37857, - [SMALL_STATE(1646)] = 37915, - [SMALL_STATE(1647)] = 37969, - [SMALL_STATE(1648)] = 38051, - [SMALL_STATE(1649)] = 38137, - [SMALL_STATE(1650)] = 38223, - [SMALL_STATE(1651)] = 38309, - [SMALL_STATE(1652)] = 38363, - [SMALL_STATE(1653)] = 38417, - [SMALL_STATE(1654)] = 38473, - [SMALL_STATE(1655)] = 38565, - [SMALL_STATE(1656)] = 38657, - [SMALL_STATE(1657)] = 38737, - [SMALL_STATE(1658)] = 38793, - [SMALL_STATE(1659)] = 38885, - [SMALL_STATE(1660)] = 38939, - [SMALL_STATE(1661)] = 38995, - [SMALL_STATE(1662)] = 39049, - [SMALL_STATE(1663)] = 39105, - [SMALL_STATE(1664)] = 39177, - [SMALL_STATE(1665)] = 39269, - [SMALL_STATE(1666)] = 39355, - [SMALL_STATE(1667)] = 39411, - [SMALL_STATE(1668)] = 39489, - [SMALL_STATE(1669)] = 39557, - [SMALL_STATE(1670)] = 39613, - [SMALL_STATE(1671)] = 39679, - [SMALL_STATE(1672)] = 39735, - [SMALL_STATE(1673)] = 39823, - [SMALL_STATE(1674)] = 39879, - [SMALL_STATE(1675)] = 39971, - [SMALL_STATE(1676)] = 40059, - [SMALL_STATE(1677)] = 40115, - [SMALL_STATE(1678)] = 40203, - [SMALL_STATE(1679)] = 40291, - [SMALL_STATE(1680)] = 40347, - [SMALL_STATE(1681)] = 40433, - [SMALL_STATE(1682)] = 40525, - [SMALL_STATE(1683)] = 40589, - [SMALL_STATE(1684)] = 40643, - [SMALL_STATE(1685)] = 40729, - [SMALL_STATE(1686)] = 40783, - [SMALL_STATE(1687)] = 40837, - [SMALL_STATE(1688)] = 40911, - [SMALL_STATE(1689)] = 40999, - [SMALL_STATE(1690)] = 41055, - [SMALL_STATE(1691)] = 41109, - [SMALL_STATE(1692)] = 41163, - [SMALL_STATE(1693)] = 41217, - [SMALL_STATE(1694)] = 41287, - [SMALL_STATE(1695)] = 41341, - [SMALL_STATE(1696)] = 41397, - [SMALL_STATE(1697)] = 41453, - [SMALL_STATE(1698)] = 41509, - [SMALL_STATE(1699)] = 41565, - [SMALL_STATE(1700)] = 41647, - [SMALL_STATE(1701)] = 41727, - [SMALL_STATE(1702)] = 41816, - [SMALL_STATE(1703)] = 41869, - [SMALL_STATE(1704)] = 41922, - [SMALL_STATE(1705)] = 41975, - [SMALL_STATE(1706)] = 42062, - [SMALL_STATE(1707)] = 42115, - [SMALL_STATE(1708)] = 42202, - [SMALL_STATE(1709)] = 42289, - [SMALL_STATE(1710)] = 42342, - [SMALL_STATE(1711)] = 42395, - [SMALL_STATE(1712)] = 42448, - [SMALL_STATE(1713)] = 42501, - [SMALL_STATE(1714)] = 42554, - [SMALL_STATE(1715)] = 42607, - [SMALL_STATE(1716)] = 42660, - [SMALL_STATE(1717)] = 42713, - [SMALL_STATE(1718)] = 42766, - [SMALL_STATE(1719)] = 42819, - [SMALL_STATE(1720)] = 42878, - [SMALL_STATE(1721)] = 42931, - [SMALL_STATE(1722)] = 42984, - [SMALL_STATE(1723)] = 43043, - [SMALL_STATE(1724)] = 43128, - [SMALL_STATE(1725)] = 43215, - [SMALL_STATE(1726)] = 43276, - [SMALL_STATE(1727)] = 43363, - [SMALL_STATE(1728)] = 43426, - [SMALL_STATE(1729)] = 43495, - [SMALL_STATE(1730)] = 43562, - [SMALL_STATE(1731)] = 43633, - [SMALL_STATE(1732)] = 43710, - [SMALL_STATE(1733)] = 43789, - [SMALL_STATE(1734)] = 43854, - [SMALL_STATE(1735)] = 43939, - [SMALL_STATE(1736)] = 44024, - [SMALL_STATE(1737)] = 44097, - [SMALL_STATE(1738)] = 44178, - [SMALL_STATE(1739)] = 44267, - [SMALL_STATE(1740)] = 44356, - [SMALL_STATE(1741)] = 44409, - [SMALL_STATE(1742)] = 44462, - [SMALL_STATE(1743)] = 44543, - [SMALL_STATE(1744)] = 44596, - [SMALL_STATE(1745)] = 44685, - [SMALL_STATE(1746)] = 44738, - [SMALL_STATE(1747)] = 44791, - [SMALL_STATE(1748)] = 44844, - [SMALL_STATE(1749)] = 44931, - [SMALL_STATE(1750)] = 44984, - [SMALL_STATE(1751)] = 45069, - [SMALL_STATE(1752)] = 45122, - [SMALL_STATE(1753)] = 45175, - [SMALL_STATE(1754)] = 45228, - [SMALL_STATE(1755)] = 45281, - [SMALL_STATE(1756)] = 45334, - [SMALL_STATE(1757)] = 45387, - [SMALL_STATE(1758)] = 45440, - [SMALL_STATE(1759)] = 45493, - [SMALL_STATE(1760)] = 45580, - [SMALL_STATE(1761)] = 45633, - [SMALL_STATE(1762)] = 45686, - [SMALL_STATE(1763)] = 45739, - [SMALL_STATE(1764)] = 45824, - [SMALL_STATE(1765)] = 45883, - [SMALL_STATE(1766)] = 45936, - [SMALL_STATE(1767)] = 45989, - [SMALL_STATE(1768)] = 46042, - [SMALL_STATE(1769)] = 46095, - [SMALL_STATE(1770)] = 46148, - [SMALL_STATE(1771)] = 46201, - [SMALL_STATE(1772)] = 46254, - [SMALL_STATE(1773)] = 46343, - [SMALL_STATE(1774)] = 46396, - [SMALL_STATE(1775)] = 46449, - [SMALL_STATE(1776)] = 46502, - [SMALL_STATE(1777)] = 46587, - [SMALL_STATE(1778)] = 46640, - [SMALL_STATE(1779)] = 46693, - [SMALL_STATE(1780)] = 46746, - [SMALL_STATE(1781)] = 46799, - [SMALL_STATE(1782)] = 46852, - [SMALL_STATE(1783)] = 46905, - [SMALL_STATE(1784)] = 46990, - [SMALL_STATE(1785)] = 47077, - [SMALL_STATE(1786)] = 47166, - [SMALL_STATE(1787)] = 47219, - [SMALL_STATE(1788)] = 47272, - [SMALL_STATE(1789)] = 47357, - [SMALL_STATE(1790)] = 47410, - [SMALL_STATE(1791)] = 47463, - [SMALL_STATE(1792)] = 47516, - [SMALL_STATE(1793)] = 47603, - [SMALL_STATE(1794)] = 47656, - [SMALL_STATE(1795)] = 47719, - [SMALL_STATE(1796)] = 47788, - [SMALL_STATE(1797)] = 47855, - [SMALL_STATE(1798)] = 47926, - [SMALL_STATE(1799)] = 48003, - [SMALL_STATE(1800)] = 48082, - [SMALL_STATE(1801)] = 48147, - [SMALL_STATE(1802)] = 48232, - [SMALL_STATE(1803)] = 48317, - [SMALL_STATE(1804)] = 48390, - [SMALL_STATE(1805)] = 48471, - [SMALL_STATE(1806)] = 48524, - [SMALL_STATE(1807)] = 48577, - [SMALL_STATE(1808)] = 48630, - [SMALL_STATE(1809)] = 48683, - [SMALL_STATE(1810)] = 48770, - [SMALL_STATE(1811)] = 48823, - [SMALL_STATE(1812)] = 48876, - [SMALL_STATE(1813)] = 48929, - [SMALL_STATE(1814)] = 48982, - [SMALL_STATE(1815)] = 49035, - [SMALL_STATE(1816)] = 49088, - [SMALL_STATE(1817)] = 49141, - [SMALL_STATE(1818)] = 49194, - [SMALL_STATE(1819)] = 49247, - [SMALL_STATE(1820)] = 49300, - [SMALL_STATE(1821)] = 49353, - [SMALL_STATE(1822)] = 49406, - [SMALL_STATE(1823)] = 49459, - [SMALL_STATE(1824)] = 49512, - [SMALL_STATE(1825)] = 49599, - [SMALL_STATE(1826)] = 49652, - [SMALL_STATE(1827)] = 49705, - [SMALL_STATE(1828)] = 49794, - [SMALL_STATE(1829)] = 49881, - [SMALL_STATE(1830)] = 49934, - [SMALL_STATE(1831)] = 49987, - [SMALL_STATE(1832)] = 50074, - [SMALL_STATE(1833)] = 50127, - [SMALL_STATE(1834)] = 50180, - [SMALL_STATE(1835)] = 50233, - [SMALL_STATE(1836)] = 50286, - [SMALL_STATE(1837)] = 50339, - [SMALL_STATE(1838)] = 50392, - [SMALL_STATE(1839)] = 50445, - [SMALL_STATE(1840)] = 50498, - [SMALL_STATE(1841)] = 50551, - [SMALL_STATE(1842)] = 50604, - [SMALL_STATE(1843)] = 50657, - [SMALL_STATE(1844)] = 50746, - [SMALL_STATE(1845)] = 50799, - [SMALL_STATE(1846)] = 50888, - [SMALL_STATE(1847)] = 50941, - [SMALL_STATE(1848)] = 50994, - [SMALL_STATE(1849)] = 51081, - [SMALL_STATE(1850)] = 51170, - [SMALL_STATE(1851)] = 51229, - [SMALL_STATE(1852)] = 51316, - [SMALL_STATE(1853)] = 51405, - [SMALL_STATE(1854)] = 51494, - [SMALL_STATE(1855)] = 51571, - [SMALL_STATE(1856)] = 51658, - [SMALL_STATE(1857)] = 51711, - [SMALL_STATE(1858)] = 51800, - [SMALL_STATE(1859)] = 51853, - [SMALL_STATE(1860)] = 51942, - [SMALL_STATE(1861)] = 52031, - [SMALL_STATE(1862)] = 52120, - [SMALL_STATE(1863)] = 52209, - [SMALL_STATE(1864)] = 52298, - [SMALL_STATE(1865)] = 52387, - [SMALL_STATE(1866)] = 52476, - [SMALL_STATE(1867)] = 52565, - [SMALL_STATE(1868)] = 52654, - [SMALL_STATE(1869)] = 52735, - [SMALL_STATE(1870)] = 52820, - [SMALL_STATE(1871)] = 52909, - [SMALL_STATE(1872)] = 52994, - [SMALL_STATE(1873)] = 53079, - [SMALL_STATE(1874)] = 53168, - [SMALL_STATE(1875)] = 53257, - [SMALL_STATE(1876)] = 53346, - [SMALL_STATE(1877)] = 53423, - [SMALL_STATE(1878)] = 53512, - [SMALL_STATE(1879)] = 53601, - [SMALL_STATE(1880)] = 53690, - [SMALL_STATE(1881)] = 53779, - [SMALL_STATE(1882)] = 53868, - [SMALL_STATE(1883)] = 53921, - [SMALL_STATE(1884)] = 54010, - [SMALL_STATE(1885)] = 54099, - [SMALL_STATE(1886)] = 54188, - [SMALL_STATE(1887)] = 54241, - [SMALL_STATE(1888)] = 54330, - [SMALL_STATE(1889)] = 54419, - [SMALL_STATE(1890)] = 54508, - [SMALL_STATE(1891)] = 54597, - [SMALL_STATE(1892)] = 54686, - [SMALL_STATE(1893)] = 54775, - [SMALL_STATE(1894)] = 54864, - [SMALL_STATE(1895)] = 54953, - [SMALL_STATE(1896)] = 55042, - [SMALL_STATE(1897)] = 55131, - [SMALL_STATE(1898)] = 55220, - [SMALL_STATE(1899)] = 55309, - [SMALL_STATE(1900)] = 55396, - [SMALL_STATE(1901)] = 55483, - [SMALL_STATE(1902)] = 55570, - [SMALL_STATE(1903)] = 55623, - [SMALL_STATE(1904)] = 55676, - [SMALL_STATE(1905)] = 55729, - [SMALL_STATE(1906)] = 55782, - [SMALL_STATE(1907)] = 55835, - [SMALL_STATE(1908)] = 55920, - [SMALL_STATE(1909)] = 55973, - [SMALL_STATE(1910)] = 56026, - [SMALL_STATE(1911)] = 56115, - [SMALL_STATE(1912)] = 56168, - [SMALL_STATE(1913)] = 56257, - [SMALL_STATE(1914)] = 56310, - [SMALL_STATE(1915)] = 56399, - [SMALL_STATE(1916)] = 56488, - [SMALL_STATE(1917)] = 56541, - [SMALL_STATE(1918)] = 56627, - [SMALL_STATE(1919)] = 56713, - [SMALL_STATE(1920)] = 56787, - [SMALL_STATE(1921)] = 56873, - [SMALL_STATE(1922)] = 56959, - [SMALL_STATE(1923)] = 57045, - [SMALL_STATE(1924)] = 57129, - [SMALL_STATE(1925)] = 57215, - [SMALL_STATE(1926)] = 57301, - [SMALL_STATE(1927)] = 57387, - [SMALL_STATE(1928)] = 57473, - [SMALL_STATE(1929)] = 57559, - [SMALL_STATE(1930)] = 57645, - [SMALL_STATE(1931)] = 57719, - [SMALL_STATE(1932)] = 57805, - [SMALL_STATE(1933)] = 57891, - [SMALL_STATE(1934)] = 57977, - [SMALL_STATE(1935)] = 58061, - [SMALL_STATE(1936)] = 58147, - [SMALL_STATE(1937)] = 58221, - [SMALL_STATE(1938)] = 58307, - [SMALL_STATE(1939)] = 58393, - [SMALL_STATE(1940)] = 58479, - [SMALL_STATE(1941)] = 58565, - [SMALL_STATE(1942)] = 58651, - [SMALL_STATE(1943)] = 58737, - [SMALL_STATE(1944)] = 58823, - [SMALL_STATE(1945)] = 58909, - [SMALL_STATE(1946)] = 58995, - [SMALL_STATE(1947)] = 59081, - [SMALL_STATE(1948)] = 59167, - [SMALL_STATE(1949)] = 59253, - [SMALL_STATE(1950)] = 59327, - [SMALL_STATE(1951)] = 59413, - [SMALL_STATE(1952)] = 59499, - [SMALL_STATE(1953)] = 59585, - [SMALL_STATE(1954)] = 59659, - [SMALL_STATE(1955)] = 59734, - [SMALL_STATE(1956)] = 59809, - [SMALL_STATE(1957)] = 59884, - [SMALL_STATE(1958)] = 59959, - [SMALL_STATE(1959)] = 60034, - [SMALL_STATE(1960)] = 60109, - [SMALL_STATE(1961)] = 60184, - [SMALL_STATE(1962)] = 60259, - [SMALL_STATE(1963)] = 60306, - [SMALL_STATE(1964)] = 60353, - [SMALL_STATE(1965)] = 60400, - [SMALL_STATE(1966)] = 60462, - [SMALL_STATE(1967)] = 60524, - [SMALL_STATE(1968)] = 60586, - [SMALL_STATE(1969)] = 60648, - [SMALL_STATE(1970)] = 60710, - [SMALL_STATE(1971)] = 60772, - [SMALL_STATE(1972)] = 60834, - [SMALL_STATE(1973)] = 60896, - [SMALL_STATE(1974)] = 60958, - [SMALL_STATE(1975)] = 61017, - [SMALL_STATE(1976)] = 61076, - [SMALL_STATE(1977)] = 61112, - [SMALL_STATE(1978)] = 61148, - [SMALL_STATE(1979)] = 61185, - [SMALL_STATE(1980)] = 61222, - [SMALL_STATE(1981)] = 61259, - [SMALL_STATE(1982)] = 61296, - [SMALL_STATE(1983)] = 61349, - [SMALL_STATE(1984)] = 61393, - [SMALL_STATE(1985)] = 61427, - [SMALL_STATE(1986)] = 61461, - [SMALL_STATE(1987)] = 61495, - [SMALL_STATE(1988)] = 61531, - [SMALL_STATE(1989)] = 61567, - [SMALL_STATE(1990)] = 61603, - [SMALL_STATE(1991)] = 61639, - [SMALL_STATE(1992)] = 61683, - [SMALL_STATE(1993)] = 61717, - [SMALL_STATE(1994)] = 61761, - [SMALL_STATE(1995)] = 61812, - [SMALL_STATE(1996)] = 61845, - [SMALL_STATE(1997)] = 61878, - [SMALL_STATE(1998)] = 61911, - [SMALL_STATE(1999)] = 61942, - [SMALL_STATE(2000)] = 61983, - [SMALL_STATE(2001)] = 62016, - [SMALL_STATE(2002)] = 62060, - [SMALL_STATE(2003)] = 62120, - [SMALL_STATE(2004)] = 62152, - [SMALL_STATE(2005)] = 62198, - [SMALL_STATE(2006)] = 62258, - [SMALL_STATE(2007)] = 62290, - [SMALL_STATE(2008)] = 62328, - [SMALL_STATE(2009)] = 62360, - [SMALL_STATE(2010)] = 62398, - [SMALL_STATE(2011)] = 62436, - [SMALL_STATE(2012)] = 62474, - [SMALL_STATE(2013)] = 62503, - [SMALL_STATE(2014)] = 62534, - [SMALL_STATE(2015)] = 62589, - [SMALL_STATE(2016)] = 62622, - [SMALL_STATE(2017)] = 62651, - [SMALL_STATE(2018)] = 62704, - [SMALL_STATE(2019)] = 62733, - [SMALL_STATE(2020)] = 62766, - [SMALL_STATE(2021)] = 62795, - [SMALL_STATE(2022)] = 62828, - [SMALL_STATE(2023)] = 62857, - [SMALL_STATE(2024)] = 62886, - [SMALL_STATE(2025)] = 62919, - [SMALL_STATE(2026)] = 62948, - [SMALL_STATE(2027)] = 62981, - [SMALL_STATE(2028)] = 63010, - [SMALL_STATE(2029)] = 63053, - [SMALL_STATE(2030)] = 63106, - [SMALL_STATE(2031)] = 63135, - [SMALL_STATE(2032)] = 63168, - [SMALL_STATE(2033)] = 63209, - [SMALL_STATE(2034)] = 63237, - [SMALL_STATE(2035)] = 63265, - [SMALL_STATE(2036)] = 63293, - [SMALL_STATE(2037)] = 63321, - [SMALL_STATE(2038)] = 63349, - [SMALL_STATE(2039)] = 63377, - [SMALL_STATE(2040)] = 63405, - [SMALL_STATE(2041)] = 63433, - [SMALL_STATE(2042)] = 63463, - [SMALL_STATE(2043)] = 63491, - [SMALL_STATE(2044)] = 63519, - [SMALL_STATE(2045)] = 63547, - [SMALL_STATE(2046)] = 63575, - [SMALL_STATE(2047)] = 63603, - [SMALL_STATE(2048)] = 63631, - [SMALL_STATE(2049)] = 63659, - [SMALL_STATE(2050)] = 63703, - [SMALL_STATE(2051)] = 63731, - [SMALL_STATE(2052)] = 63759, - [SMALL_STATE(2053)] = 63787, - [SMALL_STATE(2054)] = 63815, - [SMALL_STATE(2055)] = 63843, - [SMALL_STATE(2056)] = 63873, - [SMALL_STATE(2057)] = 63901, - [SMALL_STATE(2058)] = 63929, - [SMALL_STATE(2059)] = 63957, - [SMALL_STATE(2060)] = 63985, - [SMALL_STATE(2061)] = 64013, - [SMALL_STATE(2062)] = 64041, - [SMALL_STATE(2063)] = 64069, - [SMALL_STATE(2064)] = 64097, - [SMALL_STATE(2065)] = 64125, - [SMALL_STATE(2066)] = 64153, - [SMALL_STATE(2067)] = 64181, - [SMALL_STATE(2068)] = 64209, - [SMALL_STATE(2069)] = 64237, - [SMALL_STATE(2070)] = 64265, - [SMALL_STATE(2071)] = 64293, - [SMALL_STATE(2072)] = 64322, - [SMALL_STATE(2073)] = 64351, - [SMALL_STATE(2074)] = 64382, - [SMALL_STATE(2075)] = 64411, - [SMALL_STATE(2076)] = 64440, - [SMALL_STATE(2077)] = 64469, - [SMALL_STATE(2078)] = 64498, - [SMALL_STATE(2079)] = 64533, - [SMALL_STATE(2080)] = 64562, - [SMALL_STATE(2081)] = 64591, - [SMALL_STATE(2082)] = 64620, - [SMALL_STATE(2083)] = 64649, - [SMALL_STATE(2084)] = 64681, - [SMALL_STATE(2085)] = 64727, - [SMALL_STATE(2086)] = 64759, - [SMALL_STATE(2087)] = 64791, - [SMALL_STATE(2088)] = 64821, - [SMALL_STATE(2089)] = 64853, - [SMALL_STATE(2090)] = 64885, - [SMALL_STATE(2091)] = 64917, - [SMALL_STATE(2092)] = 64949, - [SMALL_STATE(2093)] = 64981, - [SMALL_STATE(2094)] = 65013, - [SMALL_STATE(2095)] = 65045, - [SMALL_STATE(2096)] = 65077, - [SMALL_STATE(2097)] = 65105, - [SMALL_STATE(2098)] = 65149, - [SMALL_STATE(2099)] = 65181, - [SMALL_STATE(2100)] = 65210, - [SMALL_STATE(2101)] = 65253, - [SMALL_STATE(2102)] = 65290, - [SMALL_STATE(2103)] = 65319, - [SMALL_STATE(2104)] = 65362, - [SMALL_STATE(2105)] = 65405, - [SMALL_STATE(2106)] = 65448, - [SMALL_STATE(2107)] = 65491, - [SMALL_STATE(2108)] = 65534, - [SMALL_STATE(2109)] = 65562, - [SMALL_STATE(2110)] = 65590, - [SMALL_STATE(2111)] = 65614, - [SMALL_STATE(2112)] = 65648, - [SMALL_STATE(2113)] = 65676, - [SMALL_STATE(2114)] = 65716, - [SMALL_STATE(2115)] = 65756, - [SMALL_STATE(2116)] = 65794, - [SMALL_STATE(2117)] = 65822, - [SMALL_STATE(2118)] = 65862, - [SMALL_STATE(2119)] = 65900, - [SMALL_STATE(2120)] = 65940, - [SMALL_STATE(2121)] = 65978, - [SMALL_STATE(2122)] = 66018, - [SMALL_STATE(2123)] = 66058, - [SMALL_STATE(2124)] = 66082, - [SMALL_STATE(2125)] = 66110, - [SMALL_STATE(2126)] = 66148, - [SMALL_STATE(2127)] = 66176, - [SMALL_STATE(2128)] = 66204, - [SMALL_STATE(2129)] = 66242, - [SMALL_STATE(2130)] = 66282, - [SMALL_STATE(2131)] = 66322, - [SMALL_STATE(2132)] = 66350, - [SMALL_STATE(2133)] = 66378, - [SMALL_STATE(2134)] = 66402, - [SMALL_STATE(2135)] = 66436, - [SMALL_STATE(2136)] = 66474, - [SMALL_STATE(2137)] = 66502, - [SMALL_STATE(2138)] = 66530, - [SMALL_STATE(2139)] = 66570, - [SMALL_STATE(2140)] = 66598, - [SMALL_STATE(2141)] = 66622, - [SMALL_STATE(2142)] = 66652, - [SMALL_STATE(2143)] = 66682, - [SMALL_STATE(2144)] = 66720, - [SMALL_STATE(2145)] = 66750, - [SMALL_STATE(2146)] = 66778, - [SMALL_STATE(2147)] = 66806, - [SMALL_STATE(2148)] = 66836, - [SMALL_STATE(2149)] = 66874, - [SMALL_STATE(2150)] = 66912, - [SMALL_STATE(2151)] = 66950, - [SMALL_STATE(2152)] = 66978, - [SMALL_STATE(2153)] = 67002, - [SMALL_STATE(2154)] = 67040, - [SMALL_STATE(2155)] = 67078, - [SMALL_STATE(2156)] = 67118, - [SMALL_STATE(2157)] = 67146, - [SMALL_STATE(2158)] = 67169, - [SMALL_STATE(2159)] = 67210, - [SMALL_STATE(2160)] = 67233, - [SMALL_STATE(2161)] = 67274, - [SMALL_STATE(2162)] = 67297, - [SMALL_STATE(2163)] = 67338, - [SMALL_STATE(2164)] = 67361, - [SMALL_STATE(2165)] = 67398, - [SMALL_STATE(2166)] = 67421, - [SMALL_STATE(2167)] = 67458, - [SMALL_STATE(2168)] = 67481, - [SMALL_STATE(2169)] = 67518, - [SMALL_STATE(2170)] = 67541, - [SMALL_STATE(2171)] = 67564, - [SMALL_STATE(2172)] = 67587, - [SMALL_STATE(2173)] = 67618, - [SMALL_STATE(2174)] = 67641, - [SMALL_STATE(2175)] = 67664, - [SMALL_STATE(2176)] = 67687, - [SMALL_STATE(2177)] = 67710, - [SMALL_STATE(2178)] = 67733, - [SMALL_STATE(2179)] = 67756, - [SMALL_STATE(2180)] = 67779, - [SMALL_STATE(2181)] = 67802, - [SMALL_STATE(2182)] = 67825, - [SMALL_STATE(2183)] = 67848, - [SMALL_STATE(2184)] = 67871, - [SMALL_STATE(2185)] = 67894, - [SMALL_STATE(2186)] = 67927, - [SMALL_STATE(2187)] = 67962, - [SMALL_STATE(2188)] = 67985, - [SMALL_STATE(2189)] = 68008, - [SMALL_STATE(2190)] = 68031, - [SMALL_STATE(2191)] = 68054, - [SMALL_STATE(2192)] = 68077, - [SMALL_STATE(2193)] = 68108, - [SMALL_STATE(2194)] = 68143, - [SMALL_STATE(2195)] = 68166, - [SMALL_STATE(2196)] = 68207, - [SMALL_STATE(2197)] = 68230, - [SMALL_STATE(2198)] = 68261, - [SMALL_STATE(2199)] = 68292, - [SMALL_STATE(2200)] = 68315, - [SMALL_STATE(2201)] = 68350, - [SMALL_STATE(2202)] = 68387, - [SMALL_STATE(2203)] = 68422, - [SMALL_STATE(2204)] = 68453, - [SMALL_STATE(2205)] = 68476, - [SMALL_STATE(2206)] = 68499, - [SMALL_STATE(2207)] = 68522, - [SMALL_STATE(2208)] = 68545, - [SMALL_STATE(2209)] = 68568, - [SMALL_STATE(2210)] = 68591, - [SMALL_STATE(2211)] = 68622, - [SMALL_STATE(2212)] = 68645, - [SMALL_STATE(2213)] = 68681, - [SMALL_STATE(2214)] = 68719, - [SMALL_STATE(2215)] = 68757, - [SMALL_STATE(2216)] = 68795, - [SMALL_STATE(2217)] = 68825, - [SMALL_STATE(2218)] = 68863, - [SMALL_STATE(2219)] = 68887, - [SMALL_STATE(2220)] = 68911, - [SMALL_STATE(2221)] = 68939, - [SMALL_STATE(2222)] = 68977, - [SMALL_STATE(2223)] = 69001, - [SMALL_STATE(2224)] = 69029, - [SMALL_STATE(2225)] = 69061, - [SMALL_STATE(2226)] = 69095, - [SMALL_STATE(2227)] = 69127, - [SMALL_STATE(2228)] = 69159, - [SMALL_STATE(2229)] = 69191, - [SMALL_STATE(2230)] = 69221, - [SMALL_STATE(2231)] = 69255, - [SMALL_STATE(2232)] = 69283, - [SMALL_STATE(2233)] = 69315, - [SMALL_STATE(2234)] = 69339, - [SMALL_STATE(2235)] = 69377, - [SMALL_STATE(2236)] = 69407, - [SMALL_STATE(2237)] = 69439, - [SMALL_STATE(2238)] = 69469, - [SMALL_STATE(2239)] = 69507, - [SMALL_STATE(2240)] = 69539, - [SMALL_STATE(2241)] = 69565, - [SMALL_STATE(2242)] = 69603, - [SMALL_STATE(2243)] = 69629, - [SMALL_STATE(2244)] = 69667, - [SMALL_STATE(2245)] = 69705, - [SMALL_STATE(2246)] = 69743, - [SMALL_STATE(2247)] = 69771, - [SMALL_STATE(2248)] = 69809, - [SMALL_STATE(2249)] = 69835, - [SMALL_STATE(2250)] = 69867, - [SMALL_STATE(2251)] = 69895, - [SMALL_STATE(2252)] = 69927, - [SMALL_STATE(2253)] = 69965, - [SMALL_STATE(2254)] = 69997, - [SMALL_STATE(2255)] = 70029, - [SMALL_STATE(2256)] = 70067, - [SMALL_STATE(2257)] = 70099, - [SMALL_STATE(2258)] = 70137, - [SMALL_STATE(2259)] = 70175, - [SMALL_STATE(2260)] = 70203, - [SMALL_STATE(2261)] = 70227, - [SMALL_STATE(2262)] = 70255, - [SMALL_STATE(2263)] = 70287, - [SMALL_STATE(2264)] = 70322, - [SMALL_STATE(2265)] = 70357, - [SMALL_STATE(2266)] = 70384, - [SMALL_STATE(2267)] = 70419, - [SMALL_STATE(2268)] = 70454, - [SMALL_STATE(2269)] = 70489, - [SMALL_STATE(2270)] = 70524, - [SMALL_STATE(2271)] = 70545, - [SMALL_STATE(2272)] = 70580, - [SMALL_STATE(2273)] = 70615, - [SMALL_STATE(2274)] = 70650, - [SMALL_STATE(2275)] = 70685, - [SMALL_STATE(2276)] = 70720, - [SMALL_STATE(2277)] = 70741, - [SMALL_STATE(2278)] = 70776, - [SMALL_STATE(2279)] = 70805, - [SMALL_STATE(2280)] = 70830, - [SMALL_STATE(2281)] = 70865, - [SMALL_STATE(2282)] = 70900, - [SMALL_STATE(2283)] = 70935, - [SMALL_STATE(2284)] = 70970, - [SMALL_STATE(2285)] = 71005, - [SMALL_STATE(2286)] = 71040, - [SMALL_STATE(2287)] = 71075, - [SMALL_STATE(2288)] = 71096, - [SMALL_STATE(2289)] = 71121, - [SMALL_STATE(2290)] = 71154, - [SMALL_STATE(2291)] = 71189, - [SMALL_STATE(2292)] = 71222, - [SMALL_STATE(2293)] = 71257, - [SMALL_STATE(2294)] = 71290, - [SMALL_STATE(2295)] = 71325, - [SMALL_STATE(2296)] = 71360, - [SMALL_STATE(2297)] = 71395, - [SMALL_STATE(2298)] = 71430, - [SMALL_STATE(2299)] = 71463, - [SMALL_STATE(2300)] = 71498, - [SMALL_STATE(2301)] = 71533, - [SMALL_STATE(2302)] = 71568, - [SMALL_STATE(2303)] = 71603, - [SMALL_STATE(2304)] = 71638, - [SMALL_STATE(2305)] = 71673, - [SMALL_STATE(2306)] = 71708, - [SMALL_STATE(2307)] = 71743, - [SMALL_STATE(2308)] = 71778, - [SMALL_STATE(2309)] = 71813, - [SMALL_STATE(2310)] = 71846, - [SMALL_STATE(2311)] = 71881, - [SMALL_STATE(2312)] = 71916, - [SMALL_STATE(2313)] = 71951, - [SMALL_STATE(2314)] = 71972, - [SMALL_STATE(2315)] = 72007, - [SMALL_STATE(2316)] = 72042, - [SMALL_STATE(2317)] = 72067, - [SMALL_STATE(2318)] = 72097, - [SMALL_STATE(2319)] = 72129, - [SMALL_STATE(2320)] = 72161, - [SMALL_STATE(2321)] = 72193, - [SMALL_STATE(2322)] = 72225, - [SMALL_STATE(2323)] = 72257, - [SMALL_STATE(2324)] = 72289, - [SMALL_STATE(2325)] = 72315, - [SMALL_STATE(2326)] = 72343, - [SMALL_STATE(2327)] = 72375, - [SMALL_STATE(2328)] = 72407, - [SMALL_STATE(2329)] = 72437, - [SMALL_STATE(2330)] = 72469, - [SMALL_STATE(2331)] = 72491, - [SMALL_STATE(2332)] = 72523, - [SMALL_STATE(2333)] = 72555, - [SMALL_STATE(2334)] = 72587, - [SMALL_STATE(2335)] = 72619, - [SMALL_STATE(2336)] = 72651, - [SMALL_STATE(2337)] = 72681, - [SMALL_STATE(2338)] = 72713, - [SMALL_STATE(2339)] = 72743, - [SMALL_STATE(2340)] = 72765, - [SMALL_STATE(2341)] = 72795, - [SMALL_STATE(2342)] = 72821, - [SMALL_STATE(2343)] = 72843, - [SMALL_STATE(2344)] = 72869, - [SMALL_STATE(2345)] = 72897, - [SMALL_STATE(2346)] = 72929, - [SMALL_STATE(2347)] = 72961, - [SMALL_STATE(2348)] = 72993, - [SMALL_STATE(2349)] = 73025, - [SMALL_STATE(2350)] = 73055, - [SMALL_STATE(2351)] = 73087, - [SMALL_STATE(2352)] = 73109, - [SMALL_STATE(2353)] = 73141, - [SMALL_STATE(2354)] = 73169, - [SMALL_STATE(2355)] = 73195, - [SMALL_STATE(2356)] = 73223, - [SMALL_STATE(2357)] = 73255, - [SMALL_STATE(2358)] = 73287, - [SMALL_STATE(2359)] = 73319, - [SMALL_STATE(2360)] = 73351, - [SMALL_STATE(2361)] = 73383, - [SMALL_STATE(2362)] = 73413, - [SMALL_STATE(2363)] = 73443, - [SMALL_STATE(2364)] = 73473, - [SMALL_STATE(2365)] = 73503, - [SMALL_STATE(2366)] = 73525, - [SMALL_STATE(2367)] = 73557, - [SMALL_STATE(2368)] = 73579, - [SMALL_STATE(2369)] = 73611, - [SMALL_STATE(2370)] = 73643, - [SMALL_STATE(2371)] = 73671, - [SMALL_STATE(2372)] = 73703, - [SMALL_STATE(2373)] = 73735, - [SMALL_STATE(2374)] = 73767, - [SMALL_STATE(2375)] = 73799, - [SMALL_STATE(2376)] = 73828, - [SMALL_STATE(2377)] = 73857, - [SMALL_STATE(2378)] = 73886, - [SMALL_STATE(2379)] = 73915, - [SMALL_STATE(2380)] = 73936, - [SMALL_STATE(2381)] = 73965, - [SMALL_STATE(2382)] = 73986, - [SMALL_STATE(2383)] = 74015, - [SMALL_STATE(2384)] = 74042, - [SMALL_STATE(2385)] = 74063, - [SMALL_STATE(2386)] = 74092, - [SMALL_STATE(2387)] = 74113, - [SMALL_STATE(2388)] = 74142, - [SMALL_STATE(2389)] = 74165, - [SMALL_STATE(2390)] = 74190, - [SMALL_STATE(2391)] = 74211, - [SMALL_STATE(2392)] = 74240, - [SMALL_STATE(2393)] = 74269, - [SMALL_STATE(2394)] = 74292, - [SMALL_STATE(2395)] = 74315, - [SMALL_STATE(2396)] = 74338, - [SMALL_STATE(2397)] = 74367, - [SMALL_STATE(2398)] = 74388, - [SMALL_STATE(2399)] = 74415, - [SMALL_STATE(2400)] = 74444, - [SMALL_STATE(2401)] = 74467, - [SMALL_STATE(2402)] = 74496, - [SMALL_STATE(2403)] = 74525, - [SMALL_STATE(2404)] = 74548, - [SMALL_STATE(2405)] = 74573, - [SMALL_STATE(2406)] = 74596, - [SMALL_STATE(2407)] = 74625, - [SMALL_STATE(2408)] = 74654, - [SMALL_STATE(2409)] = 74681, - [SMALL_STATE(2410)] = 74710, - [SMALL_STATE(2411)] = 74739, - [SMALL_STATE(2412)] = 74768, - [SMALL_STATE(2413)] = 74797, - [SMALL_STATE(2414)] = 74826, - [SMALL_STATE(2415)] = 74855, - [SMALL_STATE(2416)] = 74876, - [SMALL_STATE(2417)] = 74905, - [SMALL_STATE(2418)] = 74934, - [SMALL_STATE(2419)] = 74957, - [SMALL_STATE(2420)] = 74986, - [SMALL_STATE(2421)] = 75015, - [SMALL_STATE(2422)] = 75044, - [SMALL_STATE(2423)] = 75073, - [SMALL_STATE(2424)] = 75102, - [SMALL_STATE(2425)] = 75131, - [SMALL_STATE(2426)] = 75154, - [SMALL_STATE(2427)] = 75181, - [SMALL_STATE(2428)] = 75210, - [SMALL_STATE(2429)] = 75239, - [SMALL_STATE(2430)] = 75264, - [SMALL_STATE(2431)] = 75285, - [SMALL_STATE(2432)] = 75314, - [SMALL_STATE(2433)] = 75343, - [SMALL_STATE(2434)] = 75364, - [SMALL_STATE(2435)] = 75393, - [SMALL_STATE(2436)] = 75416, - [SMALL_STATE(2437)] = 75445, - [SMALL_STATE(2438)] = 75474, - [SMALL_STATE(2439)] = 75503, - [SMALL_STATE(2440)] = 75526, - [SMALL_STATE(2441)] = 75553, - [SMALL_STATE(2442)] = 75574, - [SMALL_STATE(2443)] = 75603, - [SMALL_STATE(2444)] = 75632, - [SMALL_STATE(2445)] = 75661, - [SMALL_STATE(2446)] = 75690, - [SMALL_STATE(2447)] = 75711, - [SMALL_STATE(2448)] = 75734, - [SMALL_STATE(2449)] = 75757, - [SMALL_STATE(2450)] = 75778, - [SMALL_STATE(2451)] = 75801, - [SMALL_STATE(2452)] = 75830, - [SMALL_STATE(2453)] = 75853, - [SMALL_STATE(2454)] = 75882, - [SMALL_STATE(2455)] = 75911, - [SMALL_STATE(2456)] = 75940, - [SMALL_STATE(2457)] = 75963, - [SMALL_STATE(2458)] = 75992, - [SMALL_STATE(2459)] = 76021, - [SMALL_STATE(2460)] = 76040, - [SMALL_STATE(2461)] = 76069, - [SMALL_STATE(2462)] = 76098, - [SMALL_STATE(2463)] = 76119, - [SMALL_STATE(2464)] = 76144, - [SMALL_STATE(2465)] = 76171, - [SMALL_STATE(2466)] = 76192, - [SMALL_STATE(2467)] = 76221, - [SMALL_STATE(2468)] = 76250, - [SMALL_STATE(2469)] = 76271, - [SMALL_STATE(2470)] = 76290, - [SMALL_STATE(2471)] = 76311, - [SMALL_STATE(2472)] = 76340, - [SMALL_STATE(2473)] = 76369, - [SMALL_STATE(2474)] = 76398, - [SMALL_STATE(2475)] = 76427, - [SMALL_STATE(2476)] = 76456, - [SMALL_STATE(2477)] = 76474, - [SMALL_STATE(2478)] = 76500, - [SMALL_STATE(2479)] = 76524, - [SMALL_STATE(2480)] = 76546, - [SMALL_STATE(2481)] = 76568, - [SMALL_STATE(2482)] = 76592, - [SMALL_STATE(2483)] = 76614, - [SMALL_STATE(2484)] = 76632, + [SMALL_STATE(1056)] = 0, + [SMALL_STATE(1057)] = 75, + [SMALL_STATE(1058)] = 148, + [SMALL_STATE(1059)] = 219, + [SMALL_STATE(1060)] = 319, + [SMALL_STATE(1061)] = 419, + [SMALL_STATE(1062)] = 519, + [SMALL_STATE(1063)] = 596, + [SMALL_STATE(1064)] = 675, + [SMALL_STATE(1065)] = 752, + [SMALL_STATE(1066)] = 829, + [SMALL_STATE(1067)] = 903, + [SMALL_STATE(1068)] = 967, + [SMALL_STATE(1069)] = 1031, + [SMALL_STATE(1070)] = 1095, + [SMALL_STATE(1071)] = 1159, + [SMALL_STATE(1072)] = 1223, + [SMALL_STATE(1073)] = 1287, + [SMALL_STATE(1074)] = 1355, + [SMALL_STATE(1075)] = 1419, + [SMALL_STATE(1076)] = 1483, + [SMALL_STATE(1077)] = 1547, + [SMALL_STATE(1078)] = 1614, + [SMALL_STATE(1079)] = 1681, + [SMALL_STATE(1080)] = 1744, + [SMALL_STATE(1081)] = 1845, + [SMALL_STATE(1082)] = 1912, + [SMALL_STATE(1083)] = 1979, + [SMALL_STATE(1084)] = 2080, + [SMALL_STATE(1085)] = 2151, + [SMALL_STATE(1086)] = 2252, + [SMALL_STATE(1087)] = 2315, + [SMALL_STATE(1088)] = 2386, + [SMALL_STATE(1089)] = 2453, + [SMALL_STATE(1090)] = 2524, + [SMALL_STATE(1091)] = 2587, + [SMALL_STATE(1092)] = 2650, + [SMALL_STATE(1093)] = 2713, + [SMALL_STATE(1094)] = 2784, + [SMALL_STATE(1095)] = 2846, + [SMALL_STATE(1096)] = 2908, + [SMALL_STATE(1097)] = 2970, + [SMALL_STATE(1098)] = 3032, + [SMALL_STATE(1099)] = 3094, + [SMALL_STATE(1100)] = 3156, + [SMALL_STATE(1101)] = 3226, + [SMALL_STATE(1102)] = 3290, + [SMALL_STATE(1103)] = 3358, + [SMALL_STATE(1104)] = 3422, + [SMALL_STATE(1105)] = 3484, + [SMALL_STATE(1106)] = 3546, + [SMALL_STATE(1107)] = 3607, + [SMALL_STATE(1108)] = 3668, + [SMALL_STATE(1109)] = 3729, + [SMALL_STATE(1110)] = 3790, + [SMALL_STATE(1111)] = 3851, + [SMALL_STATE(1112)] = 3912, + [SMALL_STATE(1113)] = 3973, + [SMALL_STATE(1114)] = 4034, + [SMALL_STATE(1115)] = 4095, + [SMALL_STATE(1116)] = 4156, + [SMALL_STATE(1117)] = 4217, + [SMALL_STATE(1118)] = 4278, + [SMALL_STATE(1119)] = 4339, + [SMALL_STATE(1120)] = 4400, + [SMALL_STATE(1121)] = 4461, + [SMALL_STATE(1122)] = 4522, + [SMALL_STATE(1123)] = 4583, + [SMALL_STATE(1124)] = 4646, + [SMALL_STATE(1125)] = 4707, + [SMALL_STATE(1126)] = 4800, + [SMALL_STATE(1127)] = 4861, + [SMALL_STATE(1128)] = 4924, + [SMALL_STATE(1129)] = 4985, + [SMALL_STATE(1130)] = 5046, + [SMALL_STATE(1131)] = 5107, + [SMALL_STATE(1132)] = 5168, + [SMALL_STATE(1133)] = 5231, + [SMALL_STATE(1134)] = 5294, + [SMALL_STATE(1135)] = 5355, + [SMALL_STATE(1136)] = 5416, + [SMALL_STATE(1137)] = 5477, + [SMALL_STATE(1138)] = 5538, + [SMALL_STATE(1139)] = 5599, + [SMALL_STATE(1140)] = 5660, + [SMALL_STATE(1141)] = 5721, + [SMALL_STATE(1142)] = 5782, + [SMALL_STATE(1143)] = 5843, + [SMALL_STATE(1144)] = 5904, + [SMALL_STATE(1145)] = 5965, + [SMALL_STATE(1146)] = 6026, + [SMALL_STATE(1147)] = 6087, + [SMALL_STATE(1148)] = 6148, + [SMALL_STATE(1149)] = 6209, + [SMALL_STATE(1150)] = 6270, + [SMALL_STATE(1151)] = 6331, + [SMALL_STATE(1152)] = 6392, + [SMALL_STATE(1153)] = 6453, + [SMALL_STATE(1154)] = 6514, + [SMALL_STATE(1155)] = 6575, + [SMALL_STATE(1156)] = 6636, + [SMALL_STATE(1157)] = 6697, + [SMALL_STATE(1158)] = 6758, + [SMALL_STATE(1159)] = 6819, + [SMALL_STATE(1160)] = 6880, + [SMALL_STATE(1161)] = 6941, + [SMALL_STATE(1162)] = 7004, + [SMALL_STATE(1163)] = 7065, + [SMALL_STATE(1164)] = 7140, + [SMALL_STATE(1165)] = 7201, + [SMALL_STATE(1166)] = 7262, + [SMALL_STATE(1167)] = 7323, + [SMALL_STATE(1168)] = 7384, + [SMALL_STATE(1169)] = 7445, + [SMALL_STATE(1170)] = 7548, + [SMALL_STATE(1171)] = 7609, + [SMALL_STATE(1172)] = 7712, + [SMALL_STATE(1173)] = 7773, + [SMALL_STATE(1174)] = 7834, + [SMALL_STATE(1175)] = 7895, + [SMALL_STATE(1176)] = 7956, + [SMALL_STATE(1177)] = 8017, + [SMALL_STATE(1178)] = 8078, + [SMALL_STATE(1179)] = 8139, + [SMALL_STATE(1180)] = 8200, + [SMALL_STATE(1181)] = 8261, + [SMALL_STATE(1182)] = 8322, + [SMALL_STATE(1183)] = 8383, + [SMALL_STATE(1184)] = 8444, + [SMALL_STATE(1185)] = 8505, + [SMALL_STATE(1186)] = 8566, + [SMALL_STATE(1187)] = 8627, + [SMALL_STATE(1188)] = 8688, + [SMALL_STATE(1189)] = 8749, + [SMALL_STATE(1190)] = 8810, + [SMALL_STATE(1191)] = 8871, + [SMALL_STATE(1192)] = 8932, + [SMALL_STATE(1193)] = 8993, + [SMALL_STATE(1194)] = 9054, + [SMALL_STATE(1195)] = 9115, + [SMALL_STATE(1196)] = 9176, + [SMALL_STATE(1197)] = 9269, + [SMALL_STATE(1198)] = 9330, + [SMALL_STATE(1199)] = 9391, + [SMALL_STATE(1200)] = 9452, + [SMALL_STATE(1201)] = 9513, + [SMALL_STATE(1202)] = 9574, + [SMALL_STATE(1203)] = 9635, + [SMALL_STATE(1204)] = 9696, + [SMALL_STATE(1205)] = 9757, + [SMALL_STATE(1206)] = 9850, + [SMALL_STATE(1207)] = 9911, + [SMALL_STATE(1208)] = 9972, + [SMALL_STATE(1209)] = 10033, + [SMALL_STATE(1210)] = 10094, + [SMALL_STATE(1211)] = 10155, + [SMALL_STATE(1212)] = 10216, + [SMALL_STATE(1213)] = 10277, + [SMALL_STATE(1214)] = 10338, + [SMALL_STATE(1215)] = 10399, + [SMALL_STATE(1216)] = 10460, + [SMALL_STATE(1217)] = 10521, + [SMALL_STATE(1218)] = 10582, + [SMALL_STATE(1219)] = 10643, + [SMALL_STATE(1220)] = 10704, + [SMALL_STATE(1221)] = 10765, + [SMALL_STATE(1222)] = 10828, + [SMALL_STATE(1223)] = 10889, + [SMALL_STATE(1224)] = 10952, + [SMALL_STATE(1225)] = 11013, + [SMALL_STATE(1226)] = 11074, + [SMALL_STATE(1227)] = 11137, + [SMALL_STATE(1228)] = 11198, + [SMALL_STATE(1229)] = 11259, + [SMALL_STATE(1230)] = 11320, + [SMALL_STATE(1231)] = 11381, + [SMALL_STATE(1232)] = 11442, + [SMALL_STATE(1233)] = 11505, + [SMALL_STATE(1234)] = 11566, + [SMALL_STATE(1235)] = 11629, + [SMALL_STATE(1236)] = 11690, + [SMALL_STATE(1237)] = 11751, + [SMALL_STATE(1238)] = 11812, + [SMALL_STATE(1239)] = 11873, + [SMALL_STATE(1240)] = 11934, + [SMALL_STATE(1241)] = 11995, + [SMALL_STATE(1242)] = 12070, + [SMALL_STATE(1243)] = 12135, + [SMALL_STATE(1244)] = 12196, + [SMALL_STATE(1245)] = 12257, + [SMALL_STATE(1246)] = 12318, + [SMALL_STATE(1247)] = 12421, + [SMALL_STATE(1248)] = 12482, + [SMALL_STATE(1249)] = 12543, + [SMALL_STATE(1250)] = 12604, + [SMALL_STATE(1251)] = 12665, + [SMALL_STATE(1252)] = 12726, + [SMALL_STATE(1253)] = 12787, + [SMALL_STATE(1254)] = 12848, + [SMALL_STATE(1255)] = 12909, + [SMALL_STATE(1256)] = 12970, + [SMALL_STATE(1257)] = 13031, + [SMALL_STATE(1258)] = 13092, + [SMALL_STATE(1259)] = 13153, + [SMALL_STATE(1260)] = 13214, + [SMALL_STATE(1261)] = 13275, + [SMALL_STATE(1262)] = 13336, + [SMALL_STATE(1263)] = 13397, + [SMALL_STATE(1264)] = 13458, + [SMALL_STATE(1265)] = 13519, + [SMALL_STATE(1266)] = 13580, + [SMALL_STATE(1267)] = 13641, + [SMALL_STATE(1268)] = 13702, + [SMALL_STATE(1269)] = 13763, + [SMALL_STATE(1270)] = 13824, + [SMALL_STATE(1271)] = 13885, + [SMALL_STATE(1272)] = 13946, + [SMALL_STATE(1273)] = 14007, + [SMALL_STATE(1274)] = 14068, + [SMALL_STATE(1275)] = 14129, + [SMALL_STATE(1276)] = 14190, + [SMALL_STATE(1277)] = 14251, + [SMALL_STATE(1278)] = 14316, + [SMALL_STATE(1279)] = 14377, + [SMALL_STATE(1280)] = 14438, + [SMALL_STATE(1281)] = 14501, + [SMALL_STATE(1282)] = 14562, + [SMALL_STATE(1283)] = 14623, + [SMALL_STATE(1284)] = 14686, + [SMALL_STATE(1285)] = 14747, + [SMALL_STATE(1286)] = 14808, + [SMALL_STATE(1287)] = 14869, + [SMALL_STATE(1288)] = 14930, + [SMALL_STATE(1289)] = 14991, + [SMALL_STATE(1290)] = 15052, + [SMALL_STATE(1291)] = 15113, + [SMALL_STATE(1292)] = 15174, + [SMALL_STATE(1293)] = 15235, + [SMALL_STATE(1294)] = 15296, + [SMALL_STATE(1295)] = 15357, + [SMALL_STATE(1296)] = 15418, + [SMALL_STATE(1297)] = 15479, + [SMALL_STATE(1298)] = 15542, + [SMALL_STATE(1299)] = 15605, + [SMALL_STATE(1300)] = 15668, + [SMALL_STATE(1301)] = 15729, + [SMALL_STATE(1302)] = 15790, + [SMALL_STATE(1303)] = 15851, + [SMALL_STATE(1304)] = 15912, + [SMALL_STATE(1305)] = 15973, + [SMALL_STATE(1306)] = 16034, + [SMALL_STATE(1307)] = 16095, + [SMALL_STATE(1308)] = 16156, + [SMALL_STATE(1309)] = 16217, + [SMALL_STATE(1310)] = 16278, + [SMALL_STATE(1311)] = 16339, + [SMALL_STATE(1312)] = 16400, + [SMALL_STATE(1313)] = 16463, + [SMALL_STATE(1314)] = 16524, + [SMALL_STATE(1315)] = 16585, + [SMALL_STATE(1316)] = 16646, + [SMALL_STATE(1317)] = 16707, + [SMALL_STATE(1318)] = 16768, + [SMALL_STATE(1319)] = 16829, + [SMALL_STATE(1320)] = 16890, + [SMALL_STATE(1321)] = 16951, + [SMALL_STATE(1322)] = 17012, + [SMALL_STATE(1323)] = 17073, + [SMALL_STATE(1324)] = 17134, + [SMALL_STATE(1325)] = 17195, + [SMALL_STATE(1326)] = 17256, + [SMALL_STATE(1327)] = 17317, + [SMALL_STATE(1328)] = 17378, + [SMALL_STATE(1329)] = 17439, + [SMALL_STATE(1330)] = 17502, + [SMALL_STATE(1331)] = 17563, + [SMALL_STATE(1332)] = 17624, + [SMALL_STATE(1333)] = 17685, + [SMALL_STATE(1334)] = 17746, + [SMALL_STATE(1335)] = 17807, + [SMALL_STATE(1336)] = 17868, + [SMALL_STATE(1337)] = 17929, + [SMALL_STATE(1338)] = 17990, + [SMALL_STATE(1339)] = 18051, + [SMALL_STATE(1340)] = 18112, + [SMALL_STATE(1341)] = 18173, + [SMALL_STATE(1342)] = 18234, + [SMALL_STATE(1343)] = 18295, + [SMALL_STATE(1344)] = 18356, + [SMALL_STATE(1345)] = 18417, + [SMALL_STATE(1346)] = 18478, + [SMALL_STATE(1347)] = 18539, + [SMALL_STATE(1348)] = 18600, + [SMALL_STATE(1349)] = 18661, + [SMALL_STATE(1350)] = 18722, + [SMALL_STATE(1351)] = 18783, + [SMALL_STATE(1352)] = 18844, + [SMALL_STATE(1353)] = 18905, + [SMALL_STATE(1354)] = 18966, + [SMALL_STATE(1355)] = 19027, + [SMALL_STATE(1356)] = 19088, + [SMALL_STATE(1357)] = 19149, + [SMALL_STATE(1358)] = 19210, + [SMALL_STATE(1359)] = 19271, + [SMALL_STATE(1360)] = 19332, + [SMALL_STATE(1361)] = 19393, + [SMALL_STATE(1362)] = 19454, + [SMALL_STATE(1363)] = 19515, + [SMALL_STATE(1364)] = 19576, + [SMALL_STATE(1365)] = 19637, + [SMALL_STATE(1366)] = 19698, + [SMALL_STATE(1367)] = 19759, + [SMALL_STATE(1368)] = 19820, + [SMALL_STATE(1369)] = 19881, + [SMALL_STATE(1370)] = 19942, + [SMALL_STATE(1371)] = 20003, + [SMALL_STATE(1372)] = 20064, + [SMALL_STATE(1373)] = 20125, + [SMALL_STATE(1374)] = 20186, + [SMALL_STATE(1375)] = 20247, + [SMALL_STATE(1376)] = 20308, + [SMALL_STATE(1377)] = 20369, + [SMALL_STATE(1378)] = 20430, + [SMALL_STATE(1379)] = 20491, + [SMALL_STATE(1380)] = 20552, + [SMALL_STATE(1381)] = 20613, + [SMALL_STATE(1382)] = 20674, + [SMALL_STATE(1383)] = 20735, + [SMALL_STATE(1384)] = 20796, + [SMALL_STATE(1385)] = 20857, + [SMALL_STATE(1386)] = 20918, + [SMALL_STATE(1387)] = 20979, + [SMALL_STATE(1388)] = 21040, + [SMALL_STATE(1389)] = 21101, + [SMALL_STATE(1390)] = 21162, + [SMALL_STATE(1391)] = 21223, + [SMALL_STATE(1392)] = 21284, + [SMALL_STATE(1393)] = 21345, + [SMALL_STATE(1394)] = 21406, + [SMALL_STATE(1395)] = 21467, + [SMALL_STATE(1396)] = 21528, + [SMALL_STATE(1397)] = 21589, + [SMALL_STATE(1398)] = 21650, + [SMALL_STATE(1399)] = 21711, + [SMALL_STATE(1400)] = 21772, + [SMALL_STATE(1401)] = 21833, + [SMALL_STATE(1402)] = 21896, + [SMALL_STATE(1403)] = 21957, + [SMALL_STATE(1404)] = 22018, + [SMALL_STATE(1405)] = 22079, + [SMALL_STATE(1406)] = 22140, + [SMALL_STATE(1407)] = 22201, + [SMALL_STATE(1408)] = 22262, + [SMALL_STATE(1409)] = 22323, + [SMALL_STATE(1410)] = 22384, + [SMALL_STATE(1411)] = 22445, + [SMALL_STATE(1412)] = 22506, + [SMALL_STATE(1413)] = 22567, + [SMALL_STATE(1414)] = 22628, + [SMALL_STATE(1415)] = 22689, + [SMALL_STATE(1416)] = 22750, + [SMALL_STATE(1417)] = 22811, + [SMALL_STATE(1418)] = 22876, + [SMALL_STATE(1419)] = 22937, + [SMALL_STATE(1420)] = 23040, + [SMALL_STATE(1421)] = 23101, + [SMALL_STATE(1422)] = 23162, + [SMALL_STATE(1423)] = 23223, + [SMALL_STATE(1424)] = 23284, + [SMALL_STATE(1425)] = 23345, + [SMALL_STATE(1426)] = 23406, + [SMALL_STATE(1427)] = 23466, + [SMALL_STATE(1428)] = 23526, + [SMALL_STATE(1429)] = 23586, + [SMALL_STATE(1430)] = 23646, + [SMALL_STATE(1431)] = 23742, + [SMALL_STATE(1432)] = 23802, + [SMALL_STATE(1433)] = 23862, + [SMALL_STATE(1434)] = 23924, + [SMALL_STATE(1435)] = 23984, + [SMALL_STATE(1436)] = 24052, + [SMALL_STATE(1437)] = 24112, + [SMALL_STATE(1438)] = 24172, + [SMALL_STATE(1439)] = 24232, + [SMALL_STATE(1440)] = 24294, + [SMALL_STATE(1441)] = 24354, + [SMALL_STATE(1442)] = 24414, + [SMALL_STATE(1443)] = 24474, + [SMALL_STATE(1444)] = 24534, + [SMALL_STATE(1445)] = 24600, + [SMALL_STATE(1446)] = 24660, + [SMALL_STATE(1447)] = 24720, + [SMALL_STATE(1448)] = 24780, + [SMALL_STATE(1449)] = 24840, + [SMALL_STATE(1450)] = 24900, + [SMALL_STATE(1451)] = 24960, + [SMALL_STATE(1452)] = 25020, + [SMALL_STATE(1453)] = 25080, + [SMALL_STATE(1454)] = 25140, + [SMALL_STATE(1455)] = 25200, + [SMALL_STATE(1456)] = 25260, + [SMALL_STATE(1457)] = 25320, + [SMALL_STATE(1458)] = 25380, + [SMALL_STATE(1459)] = 25440, + [SMALL_STATE(1460)] = 25500, + [SMALL_STATE(1461)] = 25560, + [SMALL_STATE(1462)] = 25620, + [SMALL_STATE(1463)] = 25680, + [SMALL_STATE(1464)] = 25740, + [SMALL_STATE(1465)] = 25800, + [SMALL_STATE(1466)] = 25860, + [SMALL_STATE(1467)] = 25920, + [SMALL_STATE(1468)] = 25980, + [SMALL_STATE(1469)] = 26040, + [SMALL_STATE(1470)] = 26100, + [SMALL_STATE(1471)] = 26160, + [SMALL_STATE(1472)] = 26220, + [SMALL_STATE(1473)] = 26280, + [SMALL_STATE(1474)] = 26340, + [SMALL_STATE(1475)] = 26400, + [SMALL_STATE(1476)] = 26460, + [SMALL_STATE(1477)] = 26520, + [SMALL_STATE(1478)] = 26580, + [SMALL_STATE(1479)] = 26640, + [SMALL_STATE(1480)] = 26700, + [SMALL_STATE(1481)] = 26760, + [SMALL_STATE(1482)] = 26820, + [SMALL_STATE(1483)] = 26880, + [SMALL_STATE(1484)] = 26940, + [SMALL_STATE(1485)] = 27000, + [SMALL_STATE(1486)] = 27060, + [SMALL_STATE(1487)] = 27120, + [SMALL_STATE(1488)] = 27180, + [SMALL_STATE(1489)] = 27240, + [SMALL_STATE(1490)] = 27300, + [SMALL_STATE(1491)] = 27360, + [SMALL_STATE(1492)] = 27420, + [SMALL_STATE(1493)] = 27480, + [SMALL_STATE(1494)] = 27540, + [SMALL_STATE(1495)] = 27600, + [SMALL_STATE(1496)] = 27660, + [SMALL_STATE(1497)] = 27720, + [SMALL_STATE(1498)] = 27780, + [SMALL_STATE(1499)] = 27840, + [SMALL_STATE(1500)] = 27900, + [SMALL_STATE(1501)] = 27960, + [SMALL_STATE(1502)] = 28020, + [SMALL_STATE(1503)] = 28080, + [SMALL_STATE(1504)] = 28140, + [SMALL_STATE(1505)] = 28200, + [SMALL_STATE(1506)] = 28260, + [SMALL_STATE(1507)] = 28320, + [SMALL_STATE(1508)] = 28380, + [SMALL_STATE(1509)] = 28440, + [SMALL_STATE(1510)] = 28500, + [SMALL_STATE(1511)] = 28560, + [SMALL_STATE(1512)] = 28620, + [SMALL_STATE(1513)] = 28680, + [SMALL_STATE(1514)] = 28740, + [SMALL_STATE(1515)] = 28800, + [SMALL_STATE(1516)] = 28860, + [SMALL_STATE(1517)] = 28920, + [SMALL_STATE(1518)] = 28980, + [SMALL_STATE(1519)] = 29040, + [SMALL_STATE(1520)] = 29100, + [SMALL_STATE(1521)] = 29160, + [SMALL_STATE(1522)] = 29220, + [SMALL_STATE(1523)] = 29280, + [SMALL_STATE(1524)] = 29340, + [SMALL_STATE(1525)] = 29400, + [SMALL_STATE(1526)] = 29460, + [SMALL_STATE(1527)] = 29524, + [SMALL_STATE(1528)] = 29590, + [SMALL_STATE(1529)] = 29650, + [SMALL_STATE(1530)] = 29710, + [SMALL_STATE(1531)] = 29770, + [SMALL_STATE(1532)] = 29844, + [SMALL_STATE(1533)] = 29904, + [SMALL_STATE(1534)] = 29970, + [SMALL_STATE(1535)] = 30036, + [SMALL_STATE(1536)] = 30096, + [SMALL_STATE(1537)] = 30156, + [SMALL_STATE(1538)] = 30216, + [SMALL_STATE(1539)] = 30276, + [SMALL_STATE(1540)] = 30336, + [SMALL_STATE(1541)] = 30400, + [SMALL_STATE(1542)] = 30460, + [SMALL_STATE(1543)] = 30520, + [SMALL_STATE(1544)] = 30580, + [SMALL_STATE(1545)] = 30640, + [SMALL_STATE(1546)] = 30700, + [SMALL_STATE(1547)] = 30771, + [SMALL_STATE(1548)] = 30832, + [SMALL_STATE(1549)] = 30893, + [SMALL_STATE(1550)] = 30962, + [SMALL_STATE(1551)] = 31048, + [SMALL_STATE(1552)] = 31126, + [SMALL_STATE(1553)] = 31212, + [SMALL_STATE(1554)] = 31270, + [SMALL_STATE(1555)] = 31328, + [SMALL_STATE(1556)] = 31414, + [SMALL_STATE(1557)] = 31506, + [SMALL_STATE(1558)] = 31592, + [SMALL_STATE(1559)] = 31652, + [SMALL_STATE(1560)] = 31742, + [SMALL_STATE(1561)] = 31810, + [SMALL_STATE(1562)] = 31884, + [SMALL_STATE(1563)] = 31956, + [SMALL_STATE(1564)] = 32048, + [SMALL_STATE(1565)] = 32138, + [SMALL_STATE(1566)] = 32204, + [SMALL_STATE(1567)] = 32274, + [SMALL_STATE(1568)] = 32334, + [SMALL_STATE(1569)] = 32404, + [SMALL_STATE(1570)] = 32474, + [SMALL_STATE(1571)] = 32560, + [SMALL_STATE(1572)] = 32646, + [SMALL_STATE(1573)] = 32722, + [SMALL_STATE(1574)] = 32780, + [SMALL_STATE(1575)] = 32866, + [SMALL_STATE(1576)] = 32948, + [SMALL_STATE(1577)] = 33038, + [SMALL_STATE(1578)] = 33124, + [SMALL_STATE(1579)] = 33208, + [SMALL_STATE(1580)] = 33298, + [SMALL_STATE(1581)] = 33368, + [SMALL_STATE(1582)] = 33460, + [SMALL_STATE(1583)] = 33550, + [SMALL_STATE(1584)] = 33640, + [SMALL_STATE(1585)] = 33703, + [SMALL_STATE(1586)] = 33768, + [SMALL_STATE(1587)] = 33831, + [SMALL_STATE(1588)] = 33898, + [SMALL_STATE(1589)] = 33954, + [SMALL_STATE(1590)] = 34010, + [SMALL_STATE(1591)] = 34070, + [SMALL_STATE(1592)] = 34130, + [SMALL_STATE(1593)] = 34194, + [SMALL_STATE(1594)] = 34252, + [SMALL_STATE(1595)] = 34316, + [SMALL_STATE(1596)] = 34374, + [SMALL_STATE(1597)] = 34432, + [SMALL_STATE(1598)] = 34488, + [SMALL_STATE(1599)] = 34552, + [SMALL_STATE(1600)] = 34612, + [SMALL_STATE(1601)] = 34672, + [SMALL_STATE(1602)] = 34732, + [SMALL_STATE(1603)] = 34790, + [SMALL_STATE(1604)] = 34846, + [SMALL_STATE(1605)] = 34910, + [SMALL_STATE(1606)] = 34970, + [SMALL_STATE(1607)] = 35030, + [SMALL_STATE(1608)] = 35119, + [SMALL_STATE(1609)] = 35174, + [SMALL_STATE(1610)] = 35229, + [SMALL_STATE(1611)] = 35286, + [SMALL_STATE(1612)] = 35341, + [SMALL_STATE(1613)] = 35398, + [SMALL_STATE(1614)] = 35453, + [SMALL_STATE(1615)] = 35512, + [SMALL_STATE(1616)] = 35601, + [SMALL_STATE(1617)] = 35656, + [SMALL_STATE(1618)] = 35711, + [SMALL_STATE(1619)] = 35766, + [SMALL_STATE(1620)] = 35855, + [SMALL_STATE(1621)] = 35950, + [SMALL_STATE(1622)] = 36009, + [SMALL_STATE(1623)] = 36068, + [SMALL_STATE(1624)] = 36163, + [SMALL_STATE(1625)] = 36220, + [SMALL_STATE(1626)] = 36315, + [SMALL_STATE(1627)] = 36410, + [SMALL_STATE(1628)] = 36505, + [SMALL_STATE(1629)] = 36600, + [SMALL_STATE(1630)] = 36695, + [SMALL_STATE(1631)] = 36752, + [SMALL_STATE(1632)] = 36811, + [SMALL_STATE(1633)] = 36906, + [SMALL_STATE(1634)] = 37001, + [SMALL_STATE(1635)] = 37096, + [SMALL_STATE(1636)] = 37191, + [SMALL_STATE(1637)] = 37248, + [SMALL_STATE(1638)] = 37305, + [SMALL_STATE(1639)] = 37394, + [SMALL_STATE(1640)] = 37449, + [SMALL_STATE(1641)] = 37506, + [SMALL_STATE(1642)] = 37601, + [SMALL_STATE(1643)] = 37655, + [SMALL_STATE(1644)] = 37711, + [SMALL_STATE(1645)] = 37779, + [SMALL_STATE(1646)] = 37833, + [SMALL_STATE(1647)] = 37905, + [SMALL_STATE(1648)] = 37959, + [SMALL_STATE(1649)] = 38015, + [SMALL_STATE(1650)] = 38069, + [SMALL_STATE(1651)] = 38125, + [SMALL_STATE(1652)] = 38203, + [SMALL_STATE(1653)] = 38259, + [SMALL_STATE(1654)] = 38315, + [SMALL_STATE(1655)] = 38371, + [SMALL_STATE(1656)] = 38457, + [SMALL_STATE(1657)] = 38531, + [SMALL_STATE(1658)] = 38585, + [SMALL_STATE(1659)] = 38677, + [SMALL_STATE(1660)] = 38731, + [SMALL_STATE(1661)] = 38785, + [SMALL_STATE(1662)] = 38839, + [SMALL_STATE(1663)] = 38893, + [SMALL_STATE(1664)] = 38947, + [SMALL_STATE(1665)] = 39029, + [SMALL_STATE(1666)] = 39117, + [SMALL_STATE(1667)] = 39171, + [SMALL_STATE(1668)] = 39225, + [SMALL_STATE(1669)] = 39307, + [SMALL_STATE(1670)] = 39393, + [SMALL_STATE(1671)] = 39449, + [SMALL_STATE(1672)] = 39535, + [SMALL_STATE(1673)] = 39615, + [SMALL_STATE(1674)] = 39703, + [SMALL_STATE(1675)] = 39795, + [SMALL_STATE(1676)] = 39887, + [SMALL_STATE(1677)] = 39941, + [SMALL_STATE(1678)] = 40033, + [SMALL_STATE(1679)] = 40113, + [SMALL_STATE(1680)] = 40201, + [SMALL_STATE(1681)] = 40265, + [SMALL_STATE(1682)] = 40319, + [SMALL_STATE(1683)] = 40373, + [SMALL_STATE(1684)] = 40465, + [SMALL_STATE(1685)] = 40521, + [SMALL_STATE(1686)] = 40577, + [SMALL_STATE(1687)] = 40665, + [SMALL_STATE(1688)] = 40721, + [SMALL_STATE(1689)] = 40777, + [SMALL_STATE(1690)] = 40831, + [SMALL_STATE(1691)] = 40897, + [SMALL_STATE(1692)] = 40953, + [SMALL_STATE(1693)] = 41041, + [SMALL_STATE(1694)] = 41097, + [SMALL_STATE(1695)] = 41183, + [SMALL_STATE(1696)] = 41275, + [SMALL_STATE(1697)] = 41331, + [SMALL_STATE(1698)] = 41387, + [SMALL_STATE(1699)] = 41443, + [SMALL_STATE(1700)] = 41529, + [SMALL_STATE(1701)] = 41587, + [SMALL_STATE(1702)] = 41657, + [SMALL_STATE(1703)] = 41743, + [SMALL_STATE(1704)] = 41796, + [SMALL_STATE(1705)] = 41849, + [SMALL_STATE(1706)] = 41902, + [SMALL_STATE(1707)] = 41991, + [SMALL_STATE(1708)] = 42080, + [SMALL_STATE(1709)] = 42133, + [SMALL_STATE(1710)] = 42186, + [SMALL_STATE(1711)] = 42275, + [SMALL_STATE(1712)] = 42328, + [SMALL_STATE(1713)] = 42381, + [SMALL_STATE(1714)] = 42434, + [SMALL_STATE(1715)] = 42487, + [SMALL_STATE(1716)] = 42548, + [SMALL_STATE(1717)] = 42601, + [SMALL_STATE(1718)] = 42654, + [SMALL_STATE(1719)] = 42741, + [SMALL_STATE(1720)] = 42794, + [SMALL_STATE(1721)] = 42853, + [SMALL_STATE(1722)] = 42912, + [SMALL_STATE(1723)] = 42965, + [SMALL_STATE(1724)] = 43018, + [SMALL_STATE(1725)] = 43071, + [SMALL_STATE(1726)] = 43158, + [SMALL_STATE(1727)] = 43247, + [SMALL_STATE(1728)] = 43334, + [SMALL_STATE(1729)] = 43387, + [SMALL_STATE(1730)] = 43476, + [SMALL_STATE(1731)] = 43529, + [SMALL_STATE(1732)] = 43582, + [SMALL_STATE(1733)] = 43635, + [SMALL_STATE(1734)] = 43688, + [SMALL_STATE(1735)] = 43741, + [SMALL_STATE(1736)] = 43794, + [SMALL_STATE(1737)] = 43875, + [SMALL_STATE(1738)] = 43928, + [SMALL_STATE(1739)] = 43987, + [SMALL_STATE(1740)] = 44040, + [SMALL_STATE(1741)] = 44127, + [SMALL_STATE(1742)] = 44212, + [SMALL_STATE(1743)] = 44297, + [SMALL_STATE(1744)] = 44384, + [SMALL_STATE(1745)] = 44437, + [SMALL_STATE(1746)] = 44500, + [SMALL_STATE(1747)] = 44569, + [SMALL_STATE(1748)] = 44636, + [SMALL_STATE(1749)] = 44707, + [SMALL_STATE(1750)] = 44784, + [SMALL_STATE(1751)] = 44863, + [SMALL_STATE(1752)] = 44928, + [SMALL_STATE(1753)] = 45013, + [SMALL_STATE(1754)] = 45098, + [SMALL_STATE(1755)] = 45171, + [SMALL_STATE(1756)] = 45252, + [SMALL_STATE(1757)] = 45305, + [SMALL_STATE(1758)] = 45358, + [SMALL_STATE(1759)] = 45411, + [SMALL_STATE(1760)] = 45464, + [SMALL_STATE(1761)] = 45517, + [SMALL_STATE(1762)] = 45602, + [SMALL_STATE(1763)] = 45655, + [SMALL_STATE(1764)] = 45740, + [SMALL_STATE(1765)] = 45827, + [SMALL_STATE(1766)] = 45880, + [SMALL_STATE(1767)] = 45933, + [SMALL_STATE(1768)] = 45986, + [SMALL_STATE(1769)] = 46071, + [SMALL_STATE(1770)] = 46124, + [SMALL_STATE(1771)] = 46177, + [SMALL_STATE(1772)] = 46230, + [SMALL_STATE(1773)] = 46283, + [SMALL_STATE(1774)] = 46336, + [SMALL_STATE(1775)] = 46389, + [SMALL_STATE(1776)] = 46442, + [SMALL_STATE(1777)] = 46495, + [SMALL_STATE(1778)] = 46580, + [SMALL_STATE(1779)] = 46633, + [SMALL_STATE(1780)] = 46686, + [SMALL_STATE(1781)] = 46739, + [SMALL_STATE(1782)] = 46792, + [SMALL_STATE(1783)] = 46845, + [SMALL_STATE(1784)] = 46898, + [SMALL_STATE(1785)] = 46951, + [SMALL_STATE(1786)] = 47004, + [SMALL_STATE(1787)] = 47057, + [SMALL_STATE(1788)] = 47110, + [SMALL_STATE(1789)] = 47163, + [SMALL_STATE(1790)] = 47216, + [SMALL_STATE(1791)] = 47269, + [SMALL_STATE(1792)] = 47322, + [SMALL_STATE(1793)] = 47375, + [SMALL_STATE(1794)] = 47428, + [SMALL_STATE(1795)] = 47481, + [SMALL_STATE(1796)] = 47534, + [SMALL_STATE(1797)] = 47623, + [SMALL_STATE(1798)] = 47676, + [SMALL_STATE(1799)] = 47729, + [SMALL_STATE(1800)] = 47782, + [SMALL_STATE(1801)] = 47869, + [SMALL_STATE(1802)] = 47922, + [SMALL_STATE(1803)] = 47975, + [SMALL_STATE(1804)] = 48060, + [SMALL_STATE(1805)] = 48113, + [SMALL_STATE(1806)] = 48166, + [SMALL_STATE(1807)] = 48219, + [SMALL_STATE(1808)] = 48306, + [SMALL_STATE(1809)] = 48359, + [SMALL_STATE(1810)] = 48448, + [SMALL_STATE(1811)] = 48511, + [SMALL_STATE(1812)] = 48580, + [SMALL_STATE(1813)] = 48647, + [SMALL_STATE(1814)] = 48718, + [SMALL_STATE(1815)] = 48795, + [SMALL_STATE(1816)] = 48874, + [SMALL_STATE(1817)] = 48939, + [SMALL_STATE(1818)] = 49024, + [SMALL_STATE(1819)] = 49109, + [SMALL_STATE(1820)] = 49198, + [SMALL_STATE(1821)] = 49279, + [SMALL_STATE(1822)] = 49332, + [SMALL_STATE(1823)] = 49385, + [SMALL_STATE(1824)] = 49438, + [SMALL_STATE(1825)] = 49491, + [SMALL_STATE(1826)] = 49578, + [SMALL_STATE(1827)] = 49631, + [SMALL_STATE(1828)] = 49684, + [SMALL_STATE(1829)] = 49737, + [SMALL_STATE(1830)] = 49790, + [SMALL_STATE(1831)] = 49843, + [SMALL_STATE(1832)] = 49896, + [SMALL_STATE(1833)] = 49949, + [SMALL_STATE(1834)] = 50002, + [SMALL_STATE(1835)] = 50055, + [SMALL_STATE(1836)] = 50108, + [SMALL_STATE(1837)] = 50161, + [SMALL_STATE(1838)] = 50214, + [SMALL_STATE(1839)] = 50267, + [SMALL_STATE(1840)] = 50354, + [SMALL_STATE(1841)] = 50407, + [SMALL_STATE(1842)] = 50460, + [SMALL_STATE(1843)] = 50547, + [SMALL_STATE(1844)] = 50600, + [SMALL_STATE(1845)] = 50653, + [SMALL_STATE(1846)] = 50740, + [SMALL_STATE(1847)] = 50793, + [SMALL_STATE(1848)] = 50846, + [SMALL_STATE(1849)] = 50935, + [SMALL_STATE(1850)] = 50988, + [SMALL_STATE(1851)] = 51075, + [SMALL_STATE(1852)] = 51128, + [SMALL_STATE(1853)] = 51181, + [SMALL_STATE(1854)] = 51270, + [SMALL_STATE(1855)] = 51359, + [SMALL_STATE(1856)] = 51412, + [SMALL_STATE(1857)] = 51465, + [SMALL_STATE(1858)] = 51554, + [SMALL_STATE(1859)] = 51607, + [SMALL_STATE(1860)] = 51696, + [SMALL_STATE(1861)] = 51773, + [SMALL_STATE(1862)] = 51862, + [SMALL_STATE(1863)] = 51949, + [SMALL_STATE(1864)] = 52036, + [SMALL_STATE(1865)] = 52095, + [SMALL_STATE(1866)] = 52184, + [SMALL_STATE(1867)] = 52237, + [SMALL_STATE(1868)] = 52326, + [SMALL_STATE(1869)] = 52379, + [SMALL_STATE(1870)] = 52468, + [SMALL_STATE(1871)] = 52557, + [SMALL_STATE(1872)] = 52646, + [SMALL_STATE(1873)] = 52735, + [SMALL_STATE(1874)] = 52824, + [SMALL_STATE(1875)] = 52913, + [SMALL_STATE(1876)] = 53002, + [SMALL_STATE(1877)] = 53055, + [SMALL_STATE(1878)] = 53108, + [SMALL_STATE(1879)] = 53197, + [SMALL_STATE(1880)] = 53286, + [SMALL_STATE(1881)] = 53339, + [SMALL_STATE(1882)] = 53428, + [SMALL_STATE(1883)] = 53509, + [SMALL_STATE(1884)] = 53594, + [SMALL_STATE(1885)] = 53683, + [SMALL_STATE(1886)] = 53768, + [SMALL_STATE(1887)] = 53853, + [SMALL_STATE(1888)] = 53942, + [SMALL_STATE(1889)] = 54031, + [SMALL_STATE(1890)] = 54120, + [SMALL_STATE(1891)] = 54209, + [SMALL_STATE(1892)] = 54298, + [SMALL_STATE(1893)] = 54387, + [SMALL_STATE(1894)] = 54476, + [SMALL_STATE(1895)] = 54565, + [SMALL_STATE(1896)] = 54654, + [SMALL_STATE(1897)] = 54743, + [SMALL_STATE(1898)] = 54832, + [SMALL_STATE(1899)] = 54921, + [SMALL_STATE(1900)] = 55010, + [SMALL_STATE(1901)] = 55099, + [SMALL_STATE(1902)] = 55188, + [SMALL_STATE(1903)] = 55277, + [SMALL_STATE(1904)] = 55366, + [SMALL_STATE(1905)] = 55455, + [SMALL_STATE(1906)] = 55542, + [SMALL_STATE(1907)] = 55631, + [SMALL_STATE(1908)] = 55720, + [SMALL_STATE(1909)] = 55773, + [SMALL_STATE(1910)] = 55850, + [SMALL_STATE(1911)] = 55939, + [SMALL_STATE(1912)] = 56028, + [SMALL_STATE(1913)] = 56081, + [SMALL_STATE(1914)] = 56168, + [SMALL_STATE(1915)] = 56221, + [SMALL_STATE(1916)] = 56310, + [SMALL_STATE(1917)] = 56397, + [SMALL_STATE(1918)] = 56484, + [SMALL_STATE(1919)] = 56557, + [SMALL_STATE(1920)] = 56643, + [SMALL_STATE(1921)] = 56729, + [SMALL_STATE(1922)] = 56815, + [SMALL_STATE(1923)] = 56901, + [SMALL_STATE(1924)] = 56987, + [SMALL_STATE(1925)] = 57073, + [SMALL_STATE(1926)] = 57159, + [SMALL_STATE(1927)] = 57245, + [SMALL_STATE(1928)] = 57331, + [SMALL_STATE(1929)] = 57417, + [SMALL_STATE(1930)] = 57503, + [SMALL_STATE(1931)] = 57589, + [SMALL_STATE(1932)] = 57675, + [SMALL_STATE(1933)] = 57761, + [SMALL_STATE(1934)] = 57845, + [SMALL_STATE(1935)] = 57931, + [SMALL_STATE(1936)] = 58017, + [SMALL_STATE(1937)] = 58103, + [SMALL_STATE(1938)] = 58189, + [SMALL_STATE(1939)] = 58263, + [SMALL_STATE(1940)] = 58349, + [SMALL_STATE(1941)] = 58433, + [SMALL_STATE(1942)] = 58507, + [SMALL_STATE(1943)] = 58593, + [SMALL_STATE(1944)] = 58679, + [SMALL_STATE(1945)] = 58765, + [SMALL_STATE(1946)] = 58851, + [SMALL_STATE(1947)] = 58937, + [SMALL_STATE(1948)] = 59011, + [SMALL_STATE(1949)] = 59097, + [SMALL_STATE(1950)] = 59171, + [SMALL_STATE(1951)] = 59257, + [SMALL_STATE(1952)] = 59343, + [SMALL_STATE(1953)] = 59429, + [SMALL_STATE(1954)] = 59503, + [SMALL_STATE(1955)] = 59589, + [SMALL_STATE(1956)] = 59675, + [SMALL_STATE(1957)] = 59750, + [SMALL_STATE(1958)] = 59825, + [SMALL_STATE(1959)] = 59900, + [SMALL_STATE(1960)] = 59975, + [SMALL_STATE(1961)] = 60050, + [SMALL_STATE(1962)] = 60125, + [SMALL_STATE(1963)] = 60200, + [SMALL_STATE(1964)] = 60275, + [SMALL_STATE(1965)] = 60322, + [SMALL_STATE(1966)] = 60369, + [SMALL_STATE(1967)] = 60416, + [SMALL_STATE(1968)] = 60478, + [SMALL_STATE(1969)] = 60540, + [SMALL_STATE(1970)] = 60602, + [SMALL_STATE(1971)] = 60664, + [SMALL_STATE(1972)] = 60726, + [SMALL_STATE(1973)] = 60788, + [SMALL_STATE(1974)] = 60850, + [SMALL_STATE(1975)] = 60912, + [SMALL_STATE(1976)] = 60974, + [SMALL_STATE(1977)] = 61033, + [SMALL_STATE(1978)] = 61092, + [SMALL_STATE(1979)] = 61128, + [SMALL_STATE(1980)] = 61164, + [SMALL_STATE(1981)] = 61201, + [SMALL_STATE(1982)] = 61238, + [SMALL_STATE(1983)] = 61275, + [SMALL_STATE(1984)] = 61312, + [SMALL_STATE(1985)] = 61365, + [SMALL_STATE(1986)] = 61399, + [SMALL_STATE(1987)] = 61433, + [SMALL_STATE(1988)] = 61469, + [SMALL_STATE(1989)] = 61503, + [SMALL_STATE(1990)] = 61547, + [SMALL_STATE(1991)] = 61583, + [SMALL_STATE(1992)] = 61619, + [SMALL_STATE(1993)] = 61663, + [SMALL_STATE(1994)] = 61699, + [SMALL_STATE(1995)] = 61743, + [SMALL_STATE(1996)] = 61777, + [SMALL_STATE(1997)] = 61808, + [SMALL_STATE(1998)] = 61841, + [SMALL_STATE(1999)] = 61874, + [SMALL_STATE(2000)] = 61925, + [SMALL_STATE(2001)] = 61958, + [SMALL_STATE(2002)] = 61991, + [SMALL_STATE(2003)] = 62032, + [SMALL_STATE(2004)] = 62070, + [SMALL_STATE(2005)] = 62108, + [SMALL_STATE(2006)] = 62152, + [SMALL_STATE(2007)] = 62184, + [SMALL_STATE(2008)] = 62222, + [SMALL_STATE(2009)] = 62254, + [SMALL_STATE(2010)] = 62314, + [SMALL_STATE(2011)] = 62360, + [SMALL_STATE(2012)] = 62398, + [SMALL_STATE(2013)] = 62430, + [SMALL_STATE(2014)] = 62490, + [SMALL_STATE(2015)] = 62519, + [SMALL_STATE(2016)] = 62548, + [SMALL_STATE(2017)] = 62581, + [SMALL_STATE(2018)] = 62622, + [SMALL_STATE(2019)] = 62653, + [SMALL_STATE(2020)] = 62682, + [SMALL_STATE(2021)] = 62715, + [SMALL_STATE(2022)] = 62744, + [SMALL_STATE(2023)] = 62797, + [SMALL_STATE(2024)] = 62830, + [SMALL_STATE(2025)] = 62863, + [SMALL_STATE(2026)] = 62892, + [SMALL_STATE(2027)] = 62925, + [SMALL_STATE(2028)] = 62954, + [SMALL_STATE(2029)] = 62983, + [SMALL_STATE(2030)] = 63016, + [SMALL_STATE(2031)] = 63045, + [SMALL_STATE(2032)] = 63074, + [SMALL_STATE(2033)] = 63129, + [SMALL_STATE(2034)] = 63172, + [SMALL_STATE(2035)] = 63225, + [SMALL_STATE(2036)] = 63253, + [SMALL_STATE(2037)] = 63281, + [SMALL_STATE(2038)] = 63309, + [SMALL_STATE(2039)] = 63337, + [SMALL_STATE(2040)] = 63365, + [SMALL_STATE(2041)] = 63409, + [SMALL_STATE(2042)] = 63437, + [SMALL_STATE(2043)] = 63465, + [SMALL_STATE(2044)] = 63493, + [SMALL_STATE(2045)] = 63521, + [SMALL_STATE(2046)] = 63549, + [SMALL_STATE(2047)] = 63577, + [SMALL_STATE(2048)] = 63605, + [SMALL_STATE(2049)] = 63633, + [SMALL_STATE(2050)] = 63661, + [SMALL_STATE(2051)] = 63689, + [SMALL_STATE(2052)] = 63719, + [SMALL_STATE(2053)] = 63747, + [SMALL_STATE(2054)] = 63775, + [SMALL_STATE(2055)] = 63803, + [SMALL_STATE(2056)] = 63831, + [SMALL_STATE(2057)] = 63859, + [SMALL_STATE(2058)] = 63887, + [SMALL_STATE(2059)] = 63915, + [SMALL_STATE(2060)] = 63943, + [SMALL_STATE(2061)] = 63971, + [SMALL_STATE(2062)] = 63999, + [SMALL_STATE(2063)] = 64027, + [SMALL_STATE(2064)] = 64055, + [SMALL_STATE(2065)] = 64083, + [SMALL_STATE(2066)] = 64113, + [SMALL_STATE(2067)] = 64141, + [SMALL_STATE(2068)] = 64169, + [SMALL_STATE(2069)] = 64197, + [SMALL_STATE(2070)] = 64225, + [SMALL_STATE(2071)] = 64253, + [SMALL_STATE(2072)] = 64281, + [SMALL_STATE(2073)] = 64309, + [SMALL_STATE(2074)] = 64344, + [SMALL_STATE(2075)] = 64375, + [SMALL_STATE(2076)] = 64404, + [SMALL_STATE(2077)] = 64433, + [SMALL_STATE(2078)] = 64462, + [SMALL_STATE(2079)] = 64491, + [SMALL_STATE(2080)] = 64520, + [SMALL_STATE(2081)] = 64549, + [SMALL_STATE(2082)] = 64578, + [SMALL_STATE(2083)] = 64607, + [SMALL_STATE(2084)] = 64636, + [SMALL_STATE(2085)] = 64665, + [SMALL_STATE(2086)] = 64697, + [SMALL_STATE(2087)] = 64729, + [SMALL_STATE(2088)] = 64761, + [SMALL_STATE(2089)] = 64807, + [SMALL_STATE(2090)] = 64839, + [SMALL_STATE(2091)] = 64871, + [SMALL_STATE(2092)] = 64903, + [SMALL_STATE(2093)] = 64947, + [SMALL_STATE(2094)] = 64975, + [SMALL_STATE(2095)] = 65007, + [SMALL_STATE(2096)] = 65039, + [SMALL_STATE(2097)] = 65071, + [SMALL_STATE(2098)] = 65101, + [SMALL_STATE(2099)] = 65133, + [SMALL_STATE(2100)] = 65165, + [SMALL_STATE(2101)] = 65197, + [SMALL_STATE(2102)] = 65234, + [SMALL_STATE(2103)] = 65263, + [SMALL_STATE(2104)] = 65306, + [SMALL_STATE(2105)] = 65349, + [SMALL_STATE(2106)] = 65392, + [SMALL_STATE(2107)] = 65435, + [SMALL_STATE(2108)] = 65464, + [SMALL_STATE(2109)] = 65507, + [SMALL_STATE(2110)] = 65550, + [SMALL_STATE(2111)] = 65580, + [SMALL_STATE(2112)] = 65604, + [SMALL_STATE(2113)] = 65632, + [SMALL_STATE(2114)] = 65660, + [SMALL_STATE(2115)] = 65688, + [SMALL_STATE(2116)] = 65716, + [SMALL_STATE(2117)] = 65754, + [SMALL_STATE(2118)] = 65782, + [SMALL_STATE(2119)] = 65806, + [SMALL_STATE(2120)] = 65836, + [SMALL_STATE(2121)] = 65874, + [SMALL_STATE(2122)] = 65914, + [SMALL_STATE(2123)] = 65942, + [SMALL_STATE(2124)] = 65982, + [SMALL_STATE(2125)] = 66010, + [SMALL_STATE(2126)] = 66038, + [SMALL_STATE(2127)] = 66066, + [SMALL_STATE(2128)] = 66100, + [SMALL_STATE(2129)] = 66124, + [SMALL_STATE(2130)] = 66164, + [SMALL_STATE(2131)] = 66204, + [SMALL_STATE(2132)] = 66244, + [SMALL_STATE(2133)] = 66284, + [SMALL_STATE(2134)] = 66322, + [SMALL_STATE(2135)] = 66356, + [SMALL_STATE(2136)] = 66394, + [SMALL_STATE(2137)] = 66422, + [SMALL_STATE(2138)] = 66460, + [SMALL_STATE(2139)] = 66488, + [SMALL_STATE(2140)] = 66516, + [SMALL_STATE(2141)] = 66544, + [SMALL_STATE(2142)] = 66582, + [SMALL_STATE(2143)] = 66622, + [SMALL_STATE(2144)] = 66662, + [SMALL_STATE(2145)] = 66690, + [SMALL_STATE(2146)] = 66720, + [SMALL_STATE(2147)] = 66744, + [SMALL_STATE(2148)] = 66782, + [SMALL_STATE(2149)] = 66812, + [SMALL_STATE(2150)] = 66850, + [SMALL_STATE(2151)] = 66888, + [SMALL_STATE(2152)] = 66926, + [SMALL_STATE(2153)] = 66954, + [SMALL_STATE(2154)] = 66992, + [SMALL_STATE(2155)] = 67032, + [SMALL_STATE(2156)] = 67056, + [SMALL_STATE(2157)] = 67084, + [SMALL_STATE(2158)] = 67122, + [SMALL_STATE(2159)] = 67162, + [SMALL_STATE(2160)] = 67185, + [SMALL_STATE(2161)] = 67208, + [SMALL_STATE(2162)] = 67231, + [SMALL_STATE(2163)] = 67254, + [SMALL_STATE(2164)] = 67277, + [SMALL_STATE(2165)] = 67300, + [SMALL_STATE(2166)] = 67323, + [SMALL_STATE(2167)] = 67346, + [SMALL_STATE(2168)] = 67369, + [SMALL_STATE(2169)] = 67392, + [SMALL_STATE(2170)] = 67415, + [SMALL_STATE(2171)] = 67438, + [SMALL_STATE(2172)] = 67461, + [SMALL_STATE(2173)] = 67496, + [SMALL_STATE(2174)] = 67519, + [SMALL_STATE(2175)] = 67556, + [SMALL_STATE(2176)] = 67579, + [SMALL_STATE(2177)] = 67614, + [SMALL_STATE(2178)] = 67637, + [SMALL_STATE(2179)] = 67660, + [SMALL_STATE(2180)] = 67683, + [SMALL_STATE(2181)] = 67706, + [SMALL_STATE(2182)] = 67737, + [SMALL_STATE(2183)] = 67778, + [SMALL_STATE(2184)] = 67801, + [SMALL_STATE(2185)] = 67832, + [SMALL_STATE(2186)] = 67855, + [SMALL_STATE(2187)] = 67878, + [SMALL_STATE(2188)] = 67913, + [SMALL_STATE(2189)] = 67936, + [SMALL_STATE(2190)] = 67969, + [SMALL_STATE(2191)] = 67992, + [SMALL_STATE(2192)] = 68015, + [SMALL_STATE(2193)] = 68038, + [SMALL_STATE(2194)] = 68073, + [SMALL_STATE(2195)] = 68104, + [SMALL_STATE(2196)] = 68141, + [SMALL_STATE(2197)] = 68164, + [SMALL_STATE(2198)] = 68187, + [SMALL_STATE(2199)] = 68210, + [SMALL_STATE(2200)] = 68241, + [SMALL_STATE(2201)] = 68264, + [SMALL_STATE(2202)] = 68305, + [SMALL_STATE(2203)] = 68328, + [SMALL_STATE(2204)] = 68351, + [SMALL_STATE(2205)] = 68374, + [SMALL_STATE(2206)] = 68411, + [SMALL_STATE(2207)] = 68442, + [SMALL_STATE(2208)] = 68483, + [SMALL_STATE(2209)] = 68506, + [SMALL_STATE(2210)] = 68529, + [SMALL_STATE(2211)] = 68552, + [SMALL_STATE(2212)] = 68589, + [SMALL_STATE(2213)] = 68630, + [SMALL_STATE(2214)] = 68661, + [SMALL_STATE(2215)] = 68695, + [SMALL_STATE(2216)] = 68725, + [SMALL_STATE(2217)] = 68749, + [SMALL_STATE(2218)] = 68781, + [SMALL_STATE(2219)] = 68819, + [SMALL_STATE(2220)] = 68857, + [SMALL_STATE(2221)] = 68887, + [SMALL_STATE(2222)] = 68913, + [SMALL_STATE(2223)] = 68939, + [SMALL_STATE(2224)] = 68977, + [SMALL_STATE(2225)] = 69015, + [SMALL_STATE(2226)] = 69053, + [SMALL_STATE(2227)] = 69081, + [SMALL_STATE(2228)] = 69113, + [SMALL_STATE(2229)] = 69141, + [SMALL_STATE(2230)] = 69179, + [SMALL_STATE(2231)] = 69211, + [SMALL_STATE(2232)] = 69249, + [SMALL_STATE(2233)] = 69281, + [SMALL_STATE(2234)] = 69307, + [SMALL_STATE(2235)] = 69343, + [SMALL_STATE(2236)] = 69381, + [SMALL_STATE(2237)] = 69419, + [SMALL_STATE(2238)] = 69449, + [SMALL_STATE(2239)] = 69481, + [SMALL_STATE(2240)] = 69519, + [SMALL_STATE(2241)] = 69543, + [SMALL_STATE(2242)] = 69581, + [SMALL_STATE(2243)] = 69605, + [SMALL_STATE(2244)] = 69643, + [SMALL_STATE(2245)] = 69677, + [SMALL_STATE(2246)] = 69715, + [SMALL_STATE(2247)] = 69753, + [SMALL_STATE(2248)] = 69781, + [SMALL_STATE(2249)] = 69813, + [SMALL_STATE(2250)] = 69841, + [SMALL_STATE(2251)] = 69869, + [SMALL_STATE(2252)] = 69907, + [SMALL_STATE(2253)] = 69939, + [SMALL_STATE(2254)] = 69969, + [SMALL_STATE(2255)] = 69993, + [SMALL_STATE(2256)] = 70017, + [SMALL_STATE(2257)] = 70049, + [SMALL_STATE(2258)] = 70081, + [SMALL_STATE(2259)] = 70113, + [SMALL_STATE(2260)] = 70151, + [SMALL_STATE(2261)] = 70183, + [SMALL_STATE(2262)] = 70215, + [SMALL_STATE(2263)] = 70243, + [SMALL_STATE(2264)] = 70271, + [SMALL_STATE(2265)] = 70303, + [SMALL_STATE(2266)] = 70338, + [SMALL_STATE(2267)] = 70373, + [SMALL_STATE(2268)] = 70398, + [SMALL_STATE(2269)] = 70433, + [SMALL_STATE(2270)] = 70468, + [SMALL_STATE(2271)] = 70503, + [SMALL_STATE(2272)] = 70538, + [SMALL_STATE(2273)] = 70573, + [SMALL_STATE(2274)] = 70608, + [SMALL_STATE(2275)] = 70643, + [SMALL_STATE(2276)] = 70678, + [SMALL_STATE(2277)] = 70713, + [SMALL_STATE(2278)] = 70748, + [SMALL_STATE(2279)] = 70783, + [SMALL_STATE(2280)] = 70818, + [SMALL_STATE(2281)] = 70851, + [SMALL_STATE(2282)] = 70886, + [SMALL_STATE(2283)] = 70921, + [SMALL_STATE(2284)] = 70956, + [SMALL_STATE(2285)] = 70991, + [SMALL_STATE(2286)] = 71012, + [SMALL_STATE(2287)] = 71033, + [SMALL_STATE(2288)] = 71054, + [SMALL_STATE(2289)] = 71087, + [SMALL_STATE(2290)] = 71122, + [SMALL_STATE(2291)] = 71157, + [SMALL_STATE(2292)] = 71186, + [SMALL_STATE(2293)] = 71221, + [SMALL_STATE(2294)] = 71256, + [SMALL_STATE(2295)] = 71291, + [SMALL_STATE(2296)] = 71326, + [SMALL_STATE(2297)] = 71361, + [SMALL_STATE(2298)] = 71396, + [SMALL_STATE(2299)] = 71431, + [SMALL_STATE(2300)] = 71466, + [SMALL_STATE(2301)] = 71501, + [SMALL_STATE(2302)] = 71536, + [SMALL_STATE(2303)] = 71561, + [SMALL_STATE(2304)] = 71596, + [SMALL_STATE(2305)] = 71623, + [SMALL_STATE(2306)] = 71648, + [SMALL_STATE(2307)] = 71669, + [SMALL_STATE(2308)] = 71704, + [SMALL_STATE(2309)] = 71739, + [SMALL_STATE(2310)] = 71774, + [SMALL_STATE(2311)] = 71809, + [SMALL_STATE(2312)] = 71844, + [SMALL_STATE(2313)] = 71879, + [SMALL_STATE(2314)] = 71914, + [SMALL_STATE(2315)] = 71947, + [SMALL_STATE(2316)] = 71982, + [SMALL_STATE(2317)] = 72015, + [SMALL_STATE(2318)] = 72050, + [SMALL_STATE(2319)] = 72083, + [SMALL_STATE(2320)] = 72115, + [SMALL_STATE(2321)] = 72147, + [SMALL_STATE(2322)] = 72169, + [SMALL_STATE(2323)] = 72201, + [SMALL_STATE(2324)] = 72229, + [SMALL_STATE(2325)] = 72259, + [SMALL_STATE(2326)] = 72287, + [SMALL_STATE(2327)] = 72313, + [SMALL_STATE(2328)] = 72345, + [SMALL_STATE(2329)] = 72371, + [SMALL_STATE(2330)] = 72403, + [SMALL_STATE(2331)] = 72433, + [SMALL_STATE(2332)] = 72455, + [SMALL_STATE(2333)] = 72477, + [SMALL_STATE(2334)] = 72509, + [SMALL_STATE(2335)] = 72541, + [SMALL_STATE(2336)] = 72569, + [SMALL_STATE(2337)] = 72601, + [SMALL_STATE(2338)] = 72633, + [SMALL_STATE(2339)] = 72655, + [SMALL_STATE(2340)] = 72687, + [SMALL_STATE(2341)] = 72713, + [SMALL_STATE(2342)] = 72745, + [SMALL_STATE(2343)] = 72777, + [SMALL_STATE(2344)] = 72807, + [SMALL_STATE(2345)] = 72829, + [SMALL_STATE(2346)] = 72857, + [SMALL_STATE(2347)] = 72889, + [SMALL_STATE(2348)] = 72921, + [SMALL_STATE(2349)] = 72951, + [SMALL_STATE(2350)] = 72981, + [SMALL_STATE(2351)] = 73011, + [SMALL_STATE(2352)] = 73041, + [SMALL_STATE(2353)] = 73073, + [SMALL_STATE(2354)] = 73101, + [SMALL_STATE(2355)] = 73133, + [SMALL_STATE(2356)] = 73165, + [SMALL_STATE(2357)] = 73191, + [SMALL_STATE(2358)] = 73223, + [SMALL_STATE(2359)] = 73255, + [SMALL_STATE(2360)] = 73287, + [SMALL_STATE(2361)] = 73319, + [SMALL_STATE(2362)] = 73349, + [SMALL_STATE(2363)] = 73379, + [SMALL_STATE(2364)] = 73411, + [SMALL_STATE(2365)] = 73443, + [SMALL_STATE(2366)] = 73475, + [SMALL_STATE(2367)] = 73497, + [SMALL_STATE(2368)] = 73529, + [SMALL_STATE(2369)] = 73561, + [SMALL_STATE(2370)] = 73593, + [SMALL_STATE(2371)] = 73625, + [SMALL_STATE(2372)] = 73657, + [SMALL_STATE(2373)] = 73689, + [SMALL_STATE(2374)] = 73721, + [SMALL_STATE(2375)] = 73753, + [SMALL_STATE(2376)] = 73785, + [SMALL_STATE(2377)] = 73815, + [SMALL_STATE(2378)] = 73844, + [SMALL_STATE(2379)] = 73867, + [SMALL_STATE(2380)] = 73896, + [SMALL_STATE(2381)] = 73917, + [SMALL_STATE(2382)] = 73938, + [SMALL_STATE(2383)] = 73959, + [SMALL_STATE(2384)] = 73980, + [SMALL_STATE(2385)] = 73999, + [SMALL_STATE(2386)] = 74020, + [SMALL_STATE(2387)] = 74041, + [SMALL_STATE(2388)] = 74064, + [SMALL_STATE(2389)] = 74091, + [SMALL_STATE(2390)] = 74112, + [SMALL_STATE(2391)] = 74141, + [SMALL_STATE(2392)] = 74170, + [SMALL_STATE(2393)] = 74199, + [SMALL_STATE(2394)] = 74222, + [SMALL_STATE(2395)] = 74251, + [SMALL_STATE(2396)] = 74276, + [SMALL_STATE(2397)] = 74305, + [SMALL_STATE(2398)] = 74334, + [SMALL_STATE(2399)] = 74363, + [SMALL_STATE(2400)] = 74392, + [SMALL_STATE(2401)] = 74421, + [SMALL_STATE(2402)] = 74450, + [SMALL_STATE(2403)] = 74477, + [SMALL_STATE(2404)] = 74506, + [SMALL_STATE(2405)] = 74535, + [SMALL_STATE(2406)] = 74564, + [SMALL_STATE(2407)] = 74593, + [SMALL_STATE(2408)] = 74614, + [SMALL_STATE(2409)] = 74643, + [SMALL_STATE(2410)] = 74672, + [SMALL_STATE(2411)] = 74701, + [SMALL_STATE(2412)] = 74730, + [SMALL_STATE(2413)] = 74759, + [SMALL_STATE(2414)] = 74788, + [SMALL_STATE(2415)] = 74817, + [SMALL_STATE(2416)] = 74838, + [SMALL_STATE(2417)] = 74859, + [SMALL_STATE(2418)] = 74888, + [SMALL_STATE(2419)] = 74917, + [SMALL_STATE(2420)] = 74946, + [SMALL_STATE(2421)] = 74975, + [SMALL_STATE(2422)] = 75004, + [SMALL_STATE(2423)] = 75033, + [SMALL_STATE(2424)] = 75062, + [SMALL_STATE(2425)] = 75085, + [SMALL_STATE(2426)] = 75114, + [SMALL_STATE(2427)] = 75143, + [SMALL_STATE(2428)] = 75172, + [SMALL_STATE(2429)] = 75201, + [SMALL_STATE(2430)] = 75222, + [SMALL_STATE(2431)] = 75245, + [SMALL_STATE(2432)] = 75274, + [SMALL_STATE(2433)] = 75303, + [SMALL_STATE(2434)] = 75330, + [SMALL_STATE(2435)] = 75359, + [SMALL_STATE(2436)] = 75384, + [SMALL_STATE(2437)] = 75413, + [SMALL_STATE(2438)] = 75440, + [SMALL_STATE(2439)] = 75461, + [SMALL_STATE(2440)] = 75482, + [SMALL_STATE(2441)] = 75511, + [SMALL_STATE(2442)] = 75540, + [SMALL_STATE(2443)] = 75569, + [SMALL_STATE(2444)] = 75598, + [SMALL_STATE(2445)] = 75627, + [SMALL_STATE(2446)] = 75656, + [SMALL_STATE(2447)] = 75677, + [SMALL_STATE(2448)] = 75698, + [SMALL_STATE(2449)] = 75721, + [SMALL_STATE(2450)] = 75750, + [SMALL_STATE(2451)] = 75773, + [SMALL_STATE(2452)] = 75796, + [SMALL_STATE(2453)] = 75825, + [SMALL_STATE(2454)] = 75854, + [SMALL_STATE(2455)] = 75881, + [SMALL_STATE(2456)] = 75910, + [SMALL_STATE(2457)] = 75939, + [SMALL_STATE(2458)] = 75962, + [SMALL_STATE(2459)] = 75987, + [SMALL_STATE(2460)] = 76016, + [SMALL_STATE(2461)] = 76041, + [SMALL_STATE(2462)] = 76064, + [SMALL_STATE(2463)] = 76093, + [SMALL_STATE(2464)] = 76122, + [SMALL_STATE(2465)] = 76151, + [SMALL_STATE(2466)] = 76174, + [SMALL_STATE(2467)] = 76203, + [SMALL_STATE(2468)] = 76222, + [SMALL_STATE(2469)] = 76251, + [SMALL_STATE(2470)] = 76274, + [SMALL_STATE(2471)] = 76303, + [SMALL_STATE(2472)] = 76326, + [SMALL_STATE(2473)] = 76349, + [SMALL_STATE(2474)] = 76378, + [SMALL_STATE(2475)] = 76401, + [SMALL_STATE(2476)] = 76424, + [SMALL_STATE(2477)] = 76445, + [SMALL_STATE(2478)] = 76472, + [SMALL_STATE(2479)] = 76494, + [SMALL_STATE(2480)] = 76520, + [SMALL_STATE(2481)] = 76546, + [SMALL_STATE(2482)] = 76572, + [SMALL_STATE(2483)] = 76598, + [SMALL_STATE(2484)] = 76624, [SMALL_STATE(2485)] = 76650, - [SMALL_STATE(2486)] = 76668, - [SMALL_STATE(2487)] = 76686, - [SMALL_STATE(2488)] = 76712, - [SMALL_STATE(2489)] = 76730, - [SMALL_STATE(2490)] = 76756, + [SMALL_STATE(2486)] = 76676, + [SMALL_STATE(2487)] = 76698, + [SMALL_STATE(2488)] = 76716, + [SMALL_STATE(2489)] = 76734, + [SMALL_STATE(2490)] = 76754, [SMALL_STATE(2491)] = 76778, - [SMALL_STATE(2492)] = 76796, - [SMALL_STATE(2493)] = 76814, - [SMALL_STATE(2494)] = 76832, - [SMALL_STATE(2495)] = 76858, - [SMALL_STATE(2496)] = 76876, - [SMALL_STATE(2497)] = 76894, - [SMALL_STATE(2498)] = 76912, - [SMALL_STATE(2499)] = 76938, - [SMALL_STATE(2500)] = 76964, - [SMALL_STATE(2501)] = 76982, - [SMALL_STATE(2502)] = 77000, - [SMALL_STATE(2503)] = 77022, - [SMALL_STATE(2504)] = 77048, - [SMALL_STATE(2505)] = 77074, - [SMALL_STATE(2506)] = 77098, - [SMALL_STATE(2507)] = 77116, - [SMALL_STATE(2508)] = 77142, - [SMALL_STATE(2509)] = 77160, - [SMALL_STATE(2510)] = 77186, - [SMALL_STATE(2511)] = 77206, - [SMALL_STATE(2512)] = 77230, - [SMALL_STATE(2513)] = 77256, - [SMALL_STATE(2514)] = 77282, - [SMALL_STATE(2515)] = 77308, - [SMALL_STATE(2516)] = 77334, - [SMALL_STATE(2517)] = 77360, - [SMALL_STATE(2518)] = 77386, - [SMALL_STATE(2519)] = 77412, - [SMALL_STATE(2520)] = 77438, - [SMALL_STATE(2521)] = 77464, - [SMALL_STATE(2522)] = 77488, - [SMALL_STATE(2523)] = 77514, - [SMALL_STATE(2524)] = 77540, - [SMALL_STATE(2525)] = 77564, - [SMALL_STATE(2526)] = 77582, - [SMALL_STATE(2527)] = 77606, - [SMALL_STATE(2528)] = 77632, - [SMALL_STATE(2529)] = 77658, - [SMALL_STATE(2530)] = 77684, - [SMALL_STATE(2531)] = 77710, + [SMALL_STATE(2492)] = 76804, + [SMALL_STATE(2493)] = 76828, + [SMALL_STATE(2494)] = 76846, + [SMALL_STATE(2495)] = 76872, + [SMALL_STATE(2496)] = 76894, + [SMALL_STATE(2497)] = 76918, + [SMALL_STATE(2498)] = 76938, + [SMALL_STATE(2499)] = 76964, + [SMALL_STATE(2500)] = 76984, + [SMALL_STATE(2501)] = 77008, + [SMALL_STATE(2502)] = 77034, + [SMALL_STATE(2503)] = 77058, + [SMALL_STATE(2504)] = 77084, + [SMALL_STATE(2505)] = 77110, + [SMALL_STATE(2506)] = 77136, + [SMALL_STATE(2507)] = 77154, + [SMALL_STATE(2508)] = 77180, + [SMALL_STATE(2509)] = 77204, + [SMALL_STATE(2510)] = 77228, + [SMALL_STATE(2511)] = 77254, + [SMALL_STATE(2512)] = 77276, + [SMALL_STATE(2513)] = 77298, + [SMALL_STATE(2514)] = 77320, + [SMALL_STATE(2515)] = 77346, + [SMALL_STATE(2516)] = 77372, + [SMALL_STATE(2517)] = 77394, + [SMALL_STATE(2518)] = 77420, + [SMALL_STATE(2519)] = 77446, + [SMALL_STATE(2520)] = 77472, + [SMALL_STATE(2521)] = 77498, + [SMALL_STATE(2522)] = 77516, + [SMALL_STATE(2523)] = 77538, + [SMALL_STATE(2524)] = 77564, + [SMALL_STATE(2525)] = 77582, + [SMALL_STATE(2526)] = 77608, + [SMALL_STATE(2527)] = 77632, + [SMALL_STATE(2528)] = 77650, + [SMALL_STATE(2529)] = 77668, + [SMALL_STATE(2530)] = 77686, + [SMALL_STATE(2531)] = 77712, [SMALL_STATE(2532)] = 77736, [SMALL_STATE(2533)] = 77762, [SMALL_STATE(2534)] = 77788, - [SMALL_STATE(2535)] = 77814, - [SMALL_STATE(2536)] = 77840, - [SMALL_STATE(2537)] = 77866, - [SMALL_STATE(2538)] = 77892, - [SMALL_STATE(2539)] = 77918, - [SMALL_STATE(2540)] = 77944, - [SMALL_STATE(2541)] = 77970, - [SMALL_STATE(2542)] = 77996, - [SMALL_STATE(2543)] = 78022, - [SMALL_STATE(2544)] = 78048, - [SMALL_STATE(2545)] = 78074, - [SMALL_STATE(2546)] = 78098, - [SMALL_STATE(2547)] = 78124, - [SMALL_STATE(2548)] = 78148, - [SMALL_STATE(2549)] = 78174, - [SMALL_STATE(2550)] = 78200, - [SMALL_STATE(2551)] = 78226, - [SMALL_STATE(2552)] = 78250, - [SMALL_STATE(2553)] = 78274, - [SMALL_STATE(2554)] = 78292, - [SMALL_STATE(2555)] = 78318, - [SMALL_STATE(2556)] = 78338, - [SMALL_STATE(2557)] = 78356, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78398, - [SMALL_STATE(2560)] = 78424, - [SMALL_STATE(2561)] = 78448, - [SMALL_STATE(2562)] = 78468, - [SMALL_STATE(2563)] = 78486, - [SMALL_STATE(2564)] = 78506, - [SMALL_STATE(2565)] = 78530, - [SMALL_STATE(2566)] = 78548, - [SMALL_STATE(2567)] = 78566, - [SMALL_STATE(2568)] = 78584, - [SMALL_STATE(2569)] = 78610, - [SMALL_STATE(2570)] = 78636, - [SMALL_STATE(2571)] = 78660, - [SMALL_STATE(2572)] = 78682, - [SMALL_STATE(2573)] = 78706, - [SMALL_STATE(2574)] = 78732, - [SMALL_STATE(2575)] = 78758, - [SMALL_STATE(2576)] = 78780, - [SMALL_STATE(2577)] = 78798, - [SMALL_STATE(2578)] = 78816, - [SMALL_STATE(2579)] = 78842, - [SMALL_STATE(2580)] = 78868, - [SMALL_STATE(2581)] = 78894, - [SMALL_STATE(2582)] = 78916, - [SMALL_STATE(2583)] = 78942, - [SMALL_STATE(2584)] = 78968, - [SMALL_STATE(2585)] = 78994, - [SMALL_STATE(2586)] = 79017, - [SMALL_STATE(2587)] = 79040, - [SMALL_STATE(2588)] = 79057, - [SMALL_STATE(2589)] = 79076, - [SMALL_STATE(2590)] = 79099, - [SMALL_STATE(2591)] = 79118, - [SMALL_STATE(2592)] = 79141, - [SMALL_STATE(2593)] = 79164, - [SMALL_STATE(2594)] = 79187, - [SMALL_STATE(2595)] = 79206, - [SMALL_STATE(2596)] = 79229, - [SMALL_STATE(2597)] = 79252, - [SMALL_STATE(2598)] = 79273, - [SMALL_STATE(2599)] = 79296, - [SMALL_STATE(2600)] = 79319, - [SMALL_STATE(2601)] = 79340, - [SMALL_STATE(2602)] = 79363, - [SMALL_STATE(2603)] = 79386, - [SMALL_STATE(2604)] = 79409, - [SMALL_STATE(2605)] = 79432, - [SMALL_STATE(2606)] = 79453, - [SMALL_STATE(2607)] = 79476, - [SMALL_STATE(2608)] = 79499, - [SMALL_STATE(2609)] = 79522, - [SMALL_STATE(2610)] = 79545, - [SMALL_STATE(2611)] = 79566, - [SMALL_STATE(2612)] = 79589, - [SMALL_STATE(2613)] = 79612, - [SMALL_STATE(2614)] = 79635, - [SMALL_STATE(2615)] = 79658, - [SMALL_STATE(2616)] = 79681, - [SMALL_STATE(2617)] = 79702, - [SMALL_STATE(2618)] = 79719, - [SMALL_STATE(2619)] = 79742, - [SMALL_STATE(2620)] = 79763, - [SMALL_STATE(2621)] = 79786, - [SMALL_STATE(2622)] = 79809, - [SMALL_STATE(2623)] = 79832, - [SMALL_STATE(2624)] = 79855, - [SMALL_STATE(2625)] = 79878, - [SMALL_STATE(2626)] = 79901, - [SMALL_STATE(2627)] = 79924, - [SMALL_STATE(2628)] = 79947, - [SMALL_STATE(2629)] = 79970, - [SMALL_STATE(2630)] = 79993, - [SMALL_STATE(2631)] = 80014, - [SMALL_STATE(2632)] = 80037, - [SMALL_STATE(2633)] = 80060, - [SMALL_STATE(2634)] = 80083, - [SMALL_STATE(2635)] = 80106, - [SMALL_STATE(2636)] = 80129, - [SMALL_STATE(2637)] = 80152, - [SMALL_STATE(2638)] = 80175, - [SMALL_STATE(2639)] = 80198, - [SMALL_STATE(2640)] = 80221, - [SMALL_STATE(2641)] = 80244, - [SMALL_STATE(2642)] = 80267, - [SMALL_STATE(2643)] = 80290, - [SMALL_STATE(2644)] = 80313, - [SMALL_STATE(2645)] = 80336, - [SMALL_STATE(2646)] = 80357, - [SMALL_STATE(2647)] = 80378, - [SMALL_STATE(2648)] = 80401, - [SMALL_STATE(2649)] = 80424, - [SMALL_STATE(2650)] = 80447, - [SMALL_STATE(2651)] = 80470, - [SMALL_STATE(2652)] = 80493, - [SMALL_STATE(2653)] = 80512, - [SMALL_STATE(2654)] = 80535, - [SMALL_STATE(2655)] = 80558, - [SMALL_STATE(2656)] = 80581, - [SMALL_STATE(2657)] = 80604, - [SMALL_STATE(2658)] = 80627, - [SMALL_STATE(2659)] = 80648, - [SMALL_STATE(2660)] = 80671, - [SMALL_STATE(2661)] = 80694, - [SMALL_STATE(2662)] = 80717, - [SMALL_STATE(2663)] = 80740, - [SMALL_STATE(2664)] = 80763, - [SMALL_STATE(2665)] = 80786, - [SMALL_STATE(2666)] = 80809, - [SMALL_STATE(2667)] = 80832, - [SMALL_STATE(2668)] = 80855, - [SMALL_STATE(2669)] = 80878, - [SMALL_STATE(2670)] = 80897, - [SMALL_STATE(2671)] = 80920, - [SMALL_STATE(2672)] = 80943, - [SMALL_STATE(2673)] = 80966, - [SMALL_STATE(2674)] = 80989, - [SMALL_STATE(2675)] = 81012, - [SMALL_STATE(2676)] = 81035, - [SMALL_STATE(2677)] = 81058, - [SMALL_STATE(2678)] = 81077, - [SMALL_STATE(2679)] = 81100, - [SMALL_STATE(2680)] = 81117, - [SMALL_STATE(2681)] = 81140, - [SMALL_STATE(2682)] = 81163, - [SMALL_STATE(2683)] = 81182, - [SMALL_STATE(2684)] = 81205, - [SMALL_STATE(2685)] = 81224, - [SMALL_STATE(2686)] = 81243, - [SMALL_STATE(2687)] = 81262, - [SMALL_STATE(2688)] = 81285, - [SMALL_STATE(2689)] = 81308, - [SMALL_STATE(2690)] = 81331, - [SMALL_STATE(2691)] = 81354, - [SMALL_STATE(2692)] = 81377, - [SMALL_STATE(2693)] = 81400, - [SMALL_STATE(2694)] = 81423, - [SMALL_STATE(2695)] = 81446, - [SMALL_STATE(2696)] = 81465, - [SMALL_STATE(2697)] = 81488, - [SMALL_STATE(2698)] = 81511, - [SMALL_STATE(2699)] = 81534, - [SMALL_STATE(2700)] = 81557, - [SMALL_STATE(2701)] = 81580, - [SMALL_STATE(2702)] = 81603, - [SMALL_STATE(2703)] = 81626, - [SMALL_STATE(2704)] = 81647, - [SMALL_STATE(2705)] = 81670, - [SMALL_STATE(2706)] = 81693, - [SMALL_STATE(2707)] = 81716, - [SMALL_STATE(2708)] = 81739, - [SMALL_STATE(2709)] = 81762, - [SMALL_STATE(2710)] = 81785, - [SMALL_STATE(2711)] = 81804, - [SMALL_STATE(2712)] = 81827, - [SMALL_STATE(2713)] = 81850, - [SMALL_STATE(2714)] = 81873, - [SMALL_STATE(2715)] = 81896, - [SMALL_STATE(2716)] = 81917, - [SMALL_STATE(2717)] = 81940, - [SMALL_STATE(2718)] = 81963, - [SMALL_STATE(2719)] = 81986, - [SMALL_STATE(2720)] = 82005, - [SMALL_STATE(2721)] = 82028, - [SMALL_STATE(2722)] = 82051, - [SMALL_STATE(2723)] = 82074, - [SMALL_STATE(2724)] = 82097, - [SMALL_STATE(2725)] = 82120, - [SMALL_STATE(2726)] = 82143, - [SMALL_STATE(2727)] = 82166, - [SMALL_STATE(2728)] = 82189, - [SMALL_STATE(2729)] = 82212, - [SMALL_STATE(2730)] = 82235, - [SMALL_STATE(2731)] = 82258, - [SMALL_STATE(2732)] = 82279, - [SMALL_STATE(2733)] = 82298, - [SMALL_STATE(2734)] = 82321, - [SMALL_STATE(2735)] = 82340, - [SMALL_STATE(2736)] = 82363, - [SMALL_STATE(2737)] = 82386, - [SMALL_STATE(2738)] = 82409, - [SMALL_STATE(2739)] = 82432, - [SMALL_STATE(2740)] = 82455, - [SMALL_STATE(2741)] = 82478, - [SMALL_STATE(2742)] = 82501, - [SMALL_STATE(2743)] = 82524, - [SMALL_STATE(2744)] = 82545, - [SMALL_STATE(2745)] = 82568, - [SMALL_STATE(2746)] = 82591, - [SMALL_STATE(2747)] = 82614, - [SMALL_STATE(2748)] = 82637, - [SMALL_STATE(2749)] = 82660, - [SMALL_STATE(2750)] = 82683, - [SMALL_STATE(2751)] = 82704, - [SMALL_STATE(2752)] = 82727, - [SMALL_STATE(2753)] = 82750, - [SMALL_STATE(2754)] = 82773, - [SMALL_STATE(2755)] = 82796, - [SMALL_STATE(2756)] = 82819, - [SMALL_STATE(2757)] = 82842, - [SMALL_STATE(2758)] = 82859, - [SMALL_STATE(2759)] = 82882, - [SMALL_STATE(2760)] = 82903, - [SMALL_STATE(2761)] = 82926, - [SMALL_STATE(2762)] = 82949, - [SMALL_STATE(2763)] = 82972, - [SMALL_STATE(2764)] = 82993, - [SMALL_STATE(2765)] = 83016, - [SMALL_STATE(2766)] = 83039, - [SMALL_STATE(2767)] = 83062, - [SMALL_STATE(2768)] = 83085, - [SMALL_STATE(2769)] = 83108, - [SMALL_STATE(2770)] = 83127, - [SMALL_STATE(2771)] = 83148, - [SMALL_STATE(2772)] = 83169, - [SMALL_STATE(2773)] = 83192, - [SMALL_STATE(2774)] = 83215, - [SMALL_STATE(2775)] = 83234, - [SMALL_STATE(2776)] = 83251, - [SMALL_STATE(2777)] = 83274, - [SMALL_STATE(2778)] = 83293, - [SMALL_STATE(2779)] = 83316, - [SMALL_STATE(2780)] = 83335, - [SMALL_STATE(2781)] = 83358, - [SMALL_STATE(2782)] = 83381, - [SMALL_STATE(2783)] = 83404, - [SMALL_STATE(2784)] = 83427, - [SMALL_STATE(2785)] = 83450, - [SMALL_STATE(2786)] = 83471, - [SMALL_STATE(2787)] = 83494, - [SMALL_STATE(2788)] = 83517, - [SMALL_STATE(2789)] = 83540, - [SMALL_STATE(2790)] = 83559, - [SMALL_STATE(2791)] = 83582, - [SMALL_STATE(2792)] = 83605, - [SMALL_STATE(2793)] = 83628, - [SMALL_STATE(2794)] = 83651, - [SMALL_STATE(2795)] = 83670, - [SMALL_STATE(2796)] = 83693, - [SMALL_STATE(2797)] = 83712, - [SMALL_STATE(2798)] = 83731, - [SMALL_STATE(2799)] = 83750, - [SMALL_STATE(2800)] = 83773, - [SMALL_STATE(2801)] = 83796, - [SMALL_STATE(2802)] = 83815, - [SMALL_STATE(2803)] = 83838, - [SMALL_STATE(2804)] = 83859, - [SMALL_STATE(2805)] = 83880, - [SMALL_STATE(2806)] = 83899, - [SMALL_STATE(2807)] = 83922, - [SMALL_STATE(2808)] = 83945, - [SMALL_STATE(2809)] = 83968, - [SMALL_STATE(2810)] = 83987, - [SMALL_STATE(2811)] = 84006, - [SMALL_STATE(2812)] = 84025, - [SMALL_STATE(2813)] = 84048, - [SMALL_STATE(2814)] = 84071, - [SMALL_STATE(2815)] = 84094, - [SMALL_STATE(2816)] = 84117, - [SMALL_STATE(2817)] = 84138, - [SMALL_STATE(2818)] = 84161, - [SMALL_STATE(2819)] = 84184, - [SMALL_STATE(2820)] = 84207, - [SMALL_STATE(2821)] = 84230, - [SMALL_STATE(2822)] = 84253, - [SMALL_STATE(2823)] = 84276, - [SMALL_STATE(2824)] = 84299, - [SMALL_STATE(2825)] = 84320, - [SMALL_STATE(2826)] = 84341, - [SMALL_STATE(2827)] = 84364, - [SMALL_STATE(2828)] = 84387, - [SMALL_STATE(2829)] = 84410, - [SMALL_STATE(2830)] = 84431, - [SMALL_STATE(2831)] = 84454, - [SMALL_STATE(2832)] = 84477, - [SMALL_STATE(2833)] = 84496, - [SMALL_STATE(2834)] = 84519, - [SMALL_STATE(2835)] = 84542, - [SMALL_STATE(2836)] = 84561, - [SMALL_STATE(2837)] = 84584, - [SMALL_STATE(2838)] = 84607, - [SMALL_STATE(2839)] = 84626, - [SMALL_STATE(2840)] = 84649, - [SMALL_STATE(2841)] = 84672, - [SMALL_STATE(2842)] = 84695, - [SMALL_STATE(2843)] = 84718, - [SMALL_STATE(2844)] = 84741, - [SMALL_STATE(2845)] = 84764, - [SMALL_STATE(2846)] = 84787, - [SMALL_STATE(2847)] = 84807, - [SMALL_STATE(2848)] = 84827, - [SMALL_STATE(2849)] = 84843, - [SMALL_STATE(2850)] = 84863, - [SMALL_STATE(2851)] = 84883, - [SMALL_STATE(2852)] = 84903, - [SMALL_STATE(2853)] = 84919, - [SMALL_STATE(2854)] = 84939, - [SMALL_STATE(2855)] = 84955, - [SMALL_STATE(2856)] = 84975, - [SMALL_STATE(2857)] = 84991, - [SMALL_STATE(2858)] = 85007, - [SMALL_STATE(2859)] = 85023, - [SMALL_STATE(2860)] = 85043, - [SMALL_STATE(2861)] = 85059, - [SMALL_STATE(2862)] = 85075, - [SMALL_STATE(2863)] = 85095, - [SMALL_STATE(2864)] = 85115, - [SMALL_STATE(2865)] = 85131, - [SMALL_STATE(2866)] = 85151, - [SMALL_STATE(2867)] = 85171, - [SMALL_STATE(2868)] = 85191, - [SMALL_STATE(2869)] = 85211, - [SMALL_STATE(2870)] = 85227, + [SMALL_STATE(2535)] = 77806, + [SMALL_STATE(2536)] = 77824, + [SMALL_STATE(2537)] = 77842, + [SMALL_STATE(2538)] = 77868, + [SMALL_STATE(2539)] = 77892, + [SMALL_STATE(2540)] = 77918, + [SMALL_STATE(2541)] = 77936, + [SMALL_STATE(2542)] = 77962, + [SMALL_STATE(2543)] = 77986, + [SMALL_STATE(2544)] = 78004, + [SMALL_STATE(2545)] = 78030, + [SMALL_STATE(2546)] = 78056, + [SMALL_STATE(2547)] = 78082, + [SMALL_STATE(2548)] = 78106, + [SMALL_STATE(2549)] = 78130, + [SMALL_STATE(2550)] = 78148, + [SMALL_STATE(2551)] = 78174, + [SMALL_STATE(2552)] = 78192, + [SMALL_STATE(2553)] = 78210, + [SMALL_STATE(2554)] = 78236, + [SMALL_STATE(2555)] = 78260, + [SMALL_STATE(2556)] = 78280, + [SMALL_STATE(2557)] = 78306, + [SMALL_STATE(2558)] = 78330, + [SMALL_STATE(2559)] = 78356, + [SMALL_STATE(2560)] = 78382, + [SMALL_STATE(2561)] = 78408, + [SMALL_STATE(2562)] = 78426, + [SMALL_STATE(2563)] = 78444, + [SMALL_STATE(2564)] = 78470, + [SMALL_STATE(2565)] = 78496, + [SMALL_STATE(2566)] = 78514, + [SMALL_STATE(2567)] = 78540, + [SMALL_STATE(2568)] = 78558, + [SMALL_STATE(2569)] = 78584, + [SMALL_STATE(2570)] = 78610, + [SMALL_STATE(2571)] = 78628, + [SMALL_STATE(2572)] = 78654, + [SMALL_STATE(2573)] = 78680, + [SMALL_STATE(2574)] = 78706, + [SMALL_STATE(2575)] = 78732, + [SMALL_STATE(2576)] = 78758, + [SMALL_STATE(2577)] = 78776, + [SMALL_STATE(2578)] = 78800, + [SMALL_STATE(2579)] = 78826, + [SMALL_STATE(2580)] = 78844, + [SMALL_STATE(2581)] = 78870, + [SMALL_STATE(2582)] = 78896, + [SMALL_STATE(2583)] = 78914, + [SMALL_STATE(2584)] = 78940, + [SMALL_STATE(2585)] = 78958, + [SMALL_STATE(2586)] = 78984, + [SMALL_STATE(2587)] = 79010, + [SMALL_STATE(2588)] = 79033, + [SMALL_STATE(2589)] = 79056, + [SMALL_STATE(2590)] = 79079, + [SMALL_STATE(2591)] = 79098, + [SMALL_STATE(2592)] = 79121, + [SMALL_STATE(2593)] = 79144, + [SMALL_STATE(2594)] = 79167, + [SMALL_STATE(2595)] = 79190, + [SMALL_STATE(2596)] = 79213, + [SMALL_STATE(2597)] = 79236, + [SMALL_STATE(2598)] = 79259, + [SMALL_STATE(2599)] = 79282, + [SMALL_STATE(2600)] = 79305, + [SMALL_STATE(2601)] = 79328, + [SMALL_STATE(2602)] = 79351, + [SMALL_STATE(2603)] = 79374, + [SMALL_STATE(2604)] = 79397, + [SMALL_STATE(2605)] = 79416, + [SMALL_STATE(2606)] = 79437, + [SMALL_STATE(2607)] = 79454, + [SMALL_STATE(2608)] = 79477, + [SMALL_STATE(2609)] = 79500, + [SMALL_STATE(2610)] = 79523, + [SMALL_STATE(2611)] = 79546, + [SMALL_STATE(2612)] = 79569, + [SMALL_STATE(2613)] = 79592, + [SMALL_STATE(2614)] = 79615, + [SMALL_STATE(2615)] = 79638, + [SMALL_STATE(2616)] = 79661, + [SMALL_STATE(2617)] = 79684, + [SMALL_STATE(2618)] = 79707, + [SMALL_STATE(2619)] = 79730, + [SMALL_STATE(2620)] = 79751, + [SMALL_STATE(2621)] = 79774, + [SMALL_STATE(2622)] = 79797, + [SMALL_STATE(2623)] = 79820, + [SMALL_STATE(2624)] = 79839, + [SMALL_STATE(2625)] = 79862, + [SMALL_STATE(2626)] = 79885, + [SMALL_STATE(2627)] = 79908, + [SMALL_STATE(2628)] = 79931, + [SMALL_STATE(2629)] = 79954, + [SMALL_STATE(2630)] = 79977, + [SMALL_STATE(2631)] = 79996, + [SMALL_STATE(2632)] = 80019, + [SMALL_STATE(2633)] = 80042, + [SMALL_STATE(2634)] = 80065, + [SMALL_STATE(2635)] = 80084, + [SMALL_STATE(2636)] = 80101, + [SMALL_STATE(2637)] = 80122, + [SMALL_STATE(2638)] = 80143, + [SMALL_STATE(2639)] = 80166, + [SMALL_STATE(2640)] = 80189, + [SMALL_STATE(2641)] = 80212, + [SMALL_STATE(2642)] = 80235, + [SMALL_STATE(2643)] = 80258, + [SMALL_STATE(2644)] = 80281, + [SMALL_STATE(2645)] = 80304, + [SMALL_STATE(2646)] = 80327, + [SMALL_STATE(2647)] = 80350, + [SMALL_STATE(2648)] = 80367, + [SMALL_STATE(2649)] = 80386, + [SMALL_STATE(2650)] = 80409, + [SMALL_STATE(2651)] = 80432, + [SMALL_STATE(2652)] = 80455, + [SMALL_STATE(2653)] = 80478, + [SMALL_STATE(2654)] = 80497, + [SMALL_STATE(2655)] = 80520, + [SMALL_STATE(2656)] = 80539, + [SMALL_STATE(2657)] = 80562, + [SMALL_STATE(2658)] = 80585, + [SMALL_STATE(2659)] = 80608, + [SMALL_STATE(2660)] = 80629, + [SMALL_STATE(2661)] = 80652, + [SMALL_STATE(2662)] = 80675, + [SMALL_STATE(2663)] = 80696, + [SMALL_STATE(2664)] = 80719, + [SMALL_STATE(2665)] = 80742, + [SMALL_STATE(2666)] = 80765, + [SMALL_STATE(2667)] = 80788, + [SMALL_STATE(2668)] = 80811, + [SMALL_STATE(2669)] = 80834, + [SMALL_STATE(2670)] = 80851, + [SMALL_STATE(2671)] = 80874, + [SMALL_STATE(2672)] = 80897, + [SMALL_STATE(2673)] = 80920, + [SMALL_STATE(2674)] = 80943, + [SMALL_STATE(2675)] = 80966, + [SMALL_STATE(2676)] = 80989, + [SMALL_STATE(2677)] = 81010, + [SMALL_STATE(2678)] = 81033, + [SMALL_STATE(2679)] = 81056, + [SMALL_STATE(2680)] = 81079, + [SMALL_STATE(2681)] = 81102, + [SMALL_STATE(2682)] = 81125, + [SMALL_STATE(2683)] = 81148, + [SMALL_STATE(2684)] = 81167, + [SMALL_STATE(2685)] = 81190, + [SMALL_STATE(2686)] = 81209, + [SMALL_STATE(2687)] = 81232, + [SMALL_STATE(2688)] = 81255, + [SMALL_STATE(2689)] = 81278, + [SMALL_STATE(2690)] = 81299, + [SMALL_STATE(2691)] = 81322, + [SMALL_STATE(2692)] = 81345, + [SMALL_STATE(2693)] = 81368, + [SMALL_STATE(2694)] = 81391, + [SMALL_STATE(2695)] = 81414, + [SMALL_STATE(2696)] = 81437, + [SMALL_STATE(2697)] = 81460, + [SMALL_STATE(2698)] = 81483, + [SMALL_STATE(2699)] = 81506, + [SMALL_STATE(2700)] = 81529, + [SMALL_STATE(2701)] = 81548, + [SMALL_STATE(2702)] = 81571, + [SMALL_STATE(2703)] = 81594, + [SMALL_STATE(2704)] = 81617, + [SMALL_STATE(2705)] = 81640, + [SMALL_STATE(2706)] = 81659, + [SMALL_STATE(2707)] = 81682, + [SMALL_STATE(2708)] = 81705, + [SMALL_STATE(2709)] = 81728, + [SMALL_STATE(2710)] = 81749, + [SMALL_STATE(2711)] = 81772, + [SMALL_STATE(2712)] = 81795, + [SMALL_STATE(2713)] = 81818, + [SMALL_STATE(2714)] = 81841, + [SMALL_STATE(2715)] = 81864, + [SMALL_STATE(2716)] = 81887, + [SMALL_STATE(2717)] = 81908, + [SMALL_STATE(2718)] = 81931, + [SMALL_STATE(2719)] = 81954, + [SMALL_STATE(2720)] = 81977, + [SMALL_STATE(2721)] = 82000, + [SMALL_STATE(2722)] = 82023, + [SMALL_STATE(2723)] = 82046, + [SMALL_STATE(2724)] = 82069, + [SMALL_STATE(2725)] = 82092, + [SMALL_STATE(2726)] = 82111, + [SMALL_STATE(2727)] = 82134, + [SMALL_STATE(2728)] = 82153, + [SMALL_STATE(2729)] = 82172, + [SMALL_STATE(2730)] = 82193, + [SMALL_STATE(2731)] = 82216, + [SMALL_STATE(2732)] = 82239, + [SMALL_STATE(2733)] = 82262, + [SMALL_STATE(2734)] = 82283, + [SMALL_STATE(2735)] = 82306, + [SMALL_STATE(2736)] = 82329, + [SMALL_STATE(2737)] = 82352, + [SMALL_STATE(2738)] = 82375, + [SMALL_STATE(2739)] = 82398, + [SMALL_STATE(2740)] = 82421, + [SMALL_STATE(2741)] = 82444, + [SMALL_STATE(2742)] = 82463, + [SMALL_STATE(2743)] = 82484, + [SMALL_STATE(2744)] = 82505, + [SMALL_STATE(2745)] = 82528, + [SMALL_STATE(2746)] = 82551, + [SMALL_STATE(2747)] = 82574, + [SMALL_STATE(2748)] = 82597, + [SMALL_STATE(2749)] = 82620, + [SMALL_STATE(2750)] = 82643, + [SMALL_STATE(2751)] = 82662, + [SMALL_STATE(2752)] = 82685, + [SMALL_STATE(2753)] = 82708, + [SMALL_STATE(2754)] = 82727, + [SMALL_STATE(2755)] = 82746, + [SMALL_STATE(2756)] = 82769, + [SMALL_STATE(2757)] = 82792, + [SMALL_STATE(2758)] = 82815, + [SMALL_STATE(2759)] = 82838, + [SMALL_STATE(2760)] = 82861, + [SMALL_STATE(2761)] = 82882, + [SMALL_STATE(2762)] = 82905, + [SMALL_STATE(2763)] = 82928, + [SMALL_STATE(2764)] = 82949, + [SMALL_STATE(2765)] = 82972, + [SMALL_STATE(2766)] = 82995, + [SMALL_STATE(2767)] = 83018, + [SMALL_STATE(2768)] = 83037, + [SMALL_STATE(2769)] = 83056, + [SMALL_STATE(2770)] = 83079, + [SMALL_STATE(2771)] = 83098, + [SMALL_STATE(2772)] = 83117, + [SMALL_STATE(2773)] = 83136, + [SMALL_STATE(2774)] = 83157, + [SMALL_STATE(2775)] = 83176, + [SMALL_STATE(2776)] = 83197, + [SMALL_STATE(2777)] = 83220, + [SMALL_STATE(2778)] = 83243, + [SMALL_STATE(2779)] = 83266, + [SMALL_STATE(2780)] = 83289, + [SMALL_STATE(2781)] = 83312, + [SMALL_STATE(2782)] = 83335, + [SMALL_STATE(2783)] = 83358, + [SMALL_STATE(2784)] = 83379, + [SMALL_STATE(2785)] = 83402, + [SMALL_STATE(2786)] = 83425, + [SMALL_STATE(2787)] = 83448, + [SMALL_STATE(2788)] = 83471, + [SMALL_STATE(2789)] = 83494, + [SMALL_STATE(2790)] = 83515, + [SMALL_STATE(2791)] = 83536, + [SMALL_STATE(2792)] = 83559, + [SMALL_STATE(2793)] = 83582, + [SMALL_STATE(2794)] = 83605, + [SMALL_STATE(2795)] = 83626, + [SMALL_STATE(2796)] = 83645, + [SMALL_STATE(2797)] = 83668, + [SMALL_STATE(2798)] = 83691, + [SMALL_STATE(2799)] = 83714, + [SMALL_STATE(2800)] = 83737, + [SMALL_STATE(2801)] = 83760, + [SMALL_STATE(2802)] = 83783, + [SMALL_STATE(2803)] = 83806, + [SMALL_STATE(2804)] = 83829, + [SMALL_STATE(2805)] = 83852, + [SMALL_STATE(2806)] = 83875, + [SMALL_STATE(2807)] = 83898, + [SMALL_STATE(2808)] = 83921, + [SMALL_STATE(2809)] = 83944, + [SMALL_STATE(2810)] = 83967, + [SMALL_STATE(2811)] = 83990, + [SMALL_STATE(2812)] = 84013, + [SMALL_STATE(2813)] = 84036, + [SMALL_STATE(2814)] = 84059, + [SMALL_STATE(2815)] = 84082, + [SMALL_STATE(2816)] = 84099, + [SMALL_STATE(2817)] = 84120, + [SMALL_STATE(2818)] = 84139, + [SMALL_STATE(2819)] = 84162, + [SMALL_STATE(2820)] = 84185, + [SMALL_STATE(2821)] = 84208, + [SMALL_STATE(2822)] = 84227, + [SMALL_STATE(2823)] = 84248, + [SMALL_STATE(2824)] = 84269, + [SMALL_STATE(2825)] = 84290, + [SMALL_STATE(2826)] = 84313, + [SMALL_STATE(2827)] = 84336, + [SMALL_STATE(2828)] = 84359, + [SMALL_STATE(2829)] = 84378, + [SMALL_STATE(2830)] = 84401, + [SMALL_STATE(2831)] = 84424, + [SMALL_STATE(2832)] = 84447, + [SMALL_STATE(2833)] = 84470, + [SMALL_STATE(2834)] = 84489, + [SMALL_STATE(2835)] = 84512, + [SMALL_STATE(2836)] = 84535, + [SMALL_STATE(2837)] = 84558, + [SMALL_STATE(2838)] = 84581, + [SMALL_STATE(2839)] = 84604, + [SMALL_STATE(2840)] = 84627, + [SMALL_STATE(2841)] = 84650, + [SMALL_STATE(2842)] = 84669, + [SMALL_STATE(2843)] = 84688, + [SMALL_STATE(2844)] = 84711, + [SMALL_STATE(2845)] = 84734, + [SMALL_STATE(2846)] = 84757, + [SMALL_STATE(2847)] = 84780, + [SMALL_STATE(2848)] = 84803, + [SMALL_STATE(2849)] = 84821, + [SMALL_STATE(2850)] = 84841, + [SMALL_STATE(2851)] = 84861, + [SMALL_STATE(2852)] = 84879, + [SMALL_STATE(2853)] = 84899, + [SMALL_STATE(2854)] = 84919, + [SMALL_STATE(2855)] = 84937, + [SMALL_STATE(2856)] = 84957, + [SMALL_STATE(2857)] = 84977, + [SMALL_STATE(2858)] = 84997, + [SMALL_STATE(2859)] = 85017, + [SMALL_STATE(2860)] = 85033, + [SMALL_STATE(2861)] = 85049, + [SMALL_STATE(2862)] = 85069, + [SMALL_STATE(2863)] = 85089, + [SMALL_STATE(2864)] = 85109, + [SMALL_STATE(2865)] = 85129, + [SMALL_STATE(2866)] = 85149, + [SMALL_STATE(2867)] = 85169, + [SMALL_STATE(2868)] = 85189, + [SMALL_STATE(2869)] = 85207, + [SMALL_STATE(2870)] = 85223, [SMALL_STATE(2871)] = 85243, [SMALL_STATE(2872)] = 85263, [SMALL_STATE(2873)] = 85283, - [SMALL_STATE(2874)] = 85299, - [SMALL_STATE(2875)] = 85319, - [SMALL_STATE(2876)] = 85335, - [SMALL_STATE(2877)] = 85353, - [SMALL_STATE(2878)] = 85373, + [SMALL_STATE(2874)] = 85303, + [SMALL_STATE(2875)] = 85323, + [SMALL_STATE(2876)] = 85339, + [SMALL_STATE(2877)] = 85359, + [SMALL_STATE(2878)] = 85375, [SMALL_STATE(2879)] = 85393, - [SMALL_STATE(2880)] = 85413, + [SMALL_STATE(2880)] = 85409, [SMALL_STATE(2881)] = 85429, - [SMALL_STATE(2882)] = 85449, - [SMALL_STATE(2883)] = 85469, + [SMALL_STATE(2882)] = 85445, + [SMALL_STATE(2883)] = 85465, [SMALL_STATE(2884)] = 85485, [SMALL_STATE(2885)] = 85505, - [SMALL_STATE(2886)] = 85525, + [SMALL_STATE(2886)] = 85521, [SMALL_STATE(2887)] = 85541, - [SMALL_STATE(2888)] = 85559, + [SMALL_STATE(2888)] = 85561, [SMALL_STATE(2889)] = 85579, - [SMALL_STATE(2890)] = 85599, - [SMALL_STATE(2891)] = 85619, - [SMALL_STATE(2892)] = 85639, - [SMALL_STATE(2893)] = 85659, - [SMALL_STATE(2894)] = 85677, - [SMALL_STATE(2895)] = 85695, - [SMALL_STATE(2896)] = 85713, - [SMALL_STATE(2897)] = 85733, - [SMALL_STATE(2898)] = 85753, - [SMALL_STATE(2899)] = 85773, - [SMALL_STATE(2900)] = 85793, - [SMALL_STATE(2901)] = 85813, - [SMALL_STATE(2902)] = 85833, - [SMALL_STATE(2903)] = 85853, - [SMALL_STATE(2904)] = 85873, - [SMALL_STATE(2905)] = 85893, - [SMALL_STATE(2906)] = 85913, - [SMALL_STATE(2907)] = 85933, - [SMALL_STATE(2908)] = 85953, - [SMALL_STATE(2909)] = 85973, - [SMALL_STATE(2910)] = 85993, - [SMALL_STATE(2911)] = 86013, - [SMALL_STATE(2912)] = 86033, - [SMALL_STATE(2913)] = 86053, - [SMALL_STATE(2914)] = 86073, - [SMALL_STATE(2915)] = 86093, - [SMALL_STATE(2916)] = 86113, - [SMALL_STATE(2917)] = 86133, - [SMALL_STATE(2918)] = 86151, - [SMALL_STATE(2919)] = 86171, - [SMALL_STATE(2920)] = 86191, - [SMALL_STATE(2921)] = 86211, - [SMALL_STATE(2922)] = 86227, - [SMALL_STATE(2923)] = 86247, - [SMALL_STATE(2924)] = 86265, - [SMALL_STATE(2925)] = 86281, - [SMALL_STATE(2926)] = 86301, - [SMALL_STATE(2927)] = 86321, - [SMALL_STATE(2928)] = 86341, - [SMALL_STATE(2929)] = 86359, - [SMALL_STATE(2930)] = 86379, - [SMALL_STATE(2931)] = 86399, - [SMALL_STATE(2932)] = 86419, - [SMALL_STATE(2933)] = 86435, - [SMALL_STATE(2934)] = 86451, - [SMALL_STATE(2935)] = 86471, - [SMALL_STATE(2936)] = 86491, - [SMALL_STATE(2937)] = 86511, - [SMALL_STATE(2938)] = 86527, - [SMALL_STATE(2939)] = 86547, - [SMALL_STATE(2940)] = 86567, - [SMALL_STATE(2941)] = 86587, + [SMALL_STATE(2890)] = 85595, + [SMALL_STATE(2891)] = 85615, + [SMALL_STATE(2892)] = 85635, + [SMALL_STATE(2893)] = 85655, + [SMALL_STATE(2894)] = 85673, + [SMALL_STATE(2895)] = 85691, + [SMALL_STATE(2896)] = 85711, + [SMALL_STATE(2897)] = 85731, + [SMALL_STATE(2898)] = 85749, + [SMALL_STATE(2899)] = 85767, + [SMALL_STATE(2900)] = 85787, + [SMALL_STATE(2901)] = 85807, + [SMALL_STATE(2902)] = 85827, + [SMALL_STATE(2903)] = 85847, + [SMALL_STATE(2904)] = 85867, + [SMALL_STATE(2905)] = 85887, + [SMALL_STATE(2906)] = 85907, + [SMALL_STATE(2907)] = 85925, + [SMALL_STATE(2908)] = 85945, + [SMALL_STATE(2909)] = 85963, + [SMALL_STATE(2910)] = 85983, + [SMALL_STATE(2911)] = 86003, + [SMALL_STATE(2912)] = 86023, + [SMALL_STATE(2913)] = 86043, + [SMALL_STATE(2914)] = 86063, + [SMALL_STATE(2915)] = 86083, + [SMALL_STATE(2916)] = 86103, + [SMALL_STATE(2917)] = 86121, + [SMALL_STATE(2918)] = 86139, + [SMALL_STATE(2919)] = 86159, + [SMALL_STATE(2920)] = 86179, + [SMALL_STATE(2921)] = 86199, + [SMALL_STATE(2922)] = 86219, + [SMALL_STATE(2923)] = 86235, + [SMALL_STATE(2924)] = 86255, + [SMALL_STATE(2925)] = 86275, + [SMALL_STATE(2926)] = 86295, + [SMALL_STATE(2927)] = 86313, + [SMALL_STATE(2928)] = 86333, + [SMALL_STATE(2929)] = 86353, + [SMALL_STATE(2930)] = 86373, + [SMALL_STATE(2931)] = 86393, + [SMALL_STATE(2932)] = 86413, + [SMALL_STATE(2933)] = 86433, + [SMALL_STATE(2934)] = 86453, + [SMALL_STATE(2935)] = 86473, + [SMALL_STATE(2936)] = 86493, + [SMALL_STATE(2937)] = 86509, + [SMALL_STATE(2938)] = 86529, + [SMALL_STATE(2939)] = 86549, + [SMALL_STATE(2940)] = 86569, + [SMALL_STATE(2941)] = 86585, [SMALL_STATE(2942)] = 86605, [SMALL_STATE(2943)] = 86625, - [SMALL_STATE(2944)] = 86645, - [SMALL_STATE(2945)] = 86661, - [SMALL_STATE(2946)] = 86681, + [SMALL_STATE(2944)] = 86641, + [SMALL_STATE(2945)] = 86657, + [SMALL_STATE(2946)] = 86677, [SMALL_STATE(2947)] = 86697, - [SMALL_STATE(2948)] = 86717, - [SMALL_STATE(2949)] = 86737, - [SMALL_STATE(2950)] = 86755, - [SMALL_STATE(2951)] = 86771, - [SMALL_STATE(2952)] = 86791, - [SMALL_STATE(2953)] = 86807, - [SMALL_STATE(2954)] = 86827, + [SMALL_STATE(2948)] = 86715, + [SMALL_STATE(2949)] = 86733, + [SMALL_STATE(2950)] = 86751, + [SMALL_STATE(2951)] = 86769, + [SMALL_STATE(2952)] = 86789, + [SMALL_STATE(2953)] = 86805, + [SMALL_STATE(2954)] = 86825, [SMALL_STATE(2955)] = 86845, [SMALL_STATE(2956)] = 86861, [SMALL_STATE(2957)] = 86881, [SMALL_STATE(2958)] = 86901, - [SMALL_STATE(2959)] = 86917, - [SMALL_STATE(2960)] = 86937, - [SMALL_STATE(2961)] = 86957, - [SMALL_STATE(2962)] = 86977, - [SMALL_STATE(2963)] = 86997, - [SMALL_STATE(2964)] = 87017, - [SMALL_STATE(2965)] = 87037, - [SMALL_STATE(2966)] = 87057, - [SMALL_STATE(2967)] = 87077, - [SMALL_STATE(2968)] = 87097, - [SMALL_STATE(2969)] = 87117, - [SMALL_STATE(2970)] = 87135, - [SMALL_STATE(2971)] = 87155, - [SMALL_STATE(2972)] = 87175, - [SMALL_STATE(2973)] = 87193, - [SMALL_STATE(2974)] = 87211, - [SMALL_STATE(2975)] = 87231, - [SMALL_STATE(2976)] = 87251, - [SMALL_STATE(2977)] = 87269, - [SMALL_STATE(2978)] = 87289, - [SMALL_STATE(2979)] = 87309, - [SMALL_STATE(2980)] = 87329, - [SMALL_STATE(2981)] = 87347, - [SMALL_STATE(2982)] = 87363, - [SMALL_STATE(2983)] = 87383, - [SMALL_STATE(2984)] = 87401, - [SMALL_STATE(2985)] = 87421, - [SMALL_STATE(2986)] = 87441, - [SMALL_STATE(2987)] = 87461, - [SMALL_STATE(2988)] = 87481, - [SMALL_STATE(2989)] = 87501, - [SMALL_STATE(2990)] = 87517, - [SMALL_STATE(2991)] = 87533, - [SMALL_STATE(2992)] = 87553, - [SMALL_STATE(2993)] = 87571, - [SMALL_STATE(2994)] = 87591, - [SMALL_STATE(2995)] = 87609, - [SMALL_STATE(2996)] = 87629, - [SMALL_STATE(2997)] = 87649, - [SMALL_STATE(2998)] = 87669, - [SMALL_STATE(2999)] = 87689, - [SMALL_STATE(3000)] = 87707, - [SMALL_STATE(3001)] = 87727, - [SMALL_STATE(3002)] = 87747, - [SMALL_STATE(3003)] = 87767, - [SMALL_STATE(3004)] = 87787, - [SMALL_STATE(3005)] = 87805, - [SMALL_STATE(3006)] = 87825, - [SMALL_STATE(3007)] = 87845, - [SMALL_STATE(3008)] = 87865, - [SMALL_STATE(3009)] = 87885, - [SMALL_STATE(3010)] = 87905, - [SMALL_STATE(3011)] = 87925, - [SMALL_STATE(3012)] = 87945, - [SMALL_STATE(3013)] = 87961, - [SMALL_STATE(3014)] = 87981, - [SMALL_STATE(3015)] = 88001, - [SMALL_STATE(3016)] = 88021, - [SMALL_STATE(3017)] = 88041, - [SMALL_STATE(3018)] = 88061, - [SMALL_STATE(3019)] = 88081, - [SMALL_STATE(3020)] = 88097, - [SMALL_STATE(3021)] = 88117, - [SMALL_STATE(3022)] = 88137, - [SMALL_STATE(3023)] = 88157, - [SMALL_STATE(3024)] = 88177, - [SMALL_STATE(3025)] = 88197, - [SMALL_STATE(3026)] = 88217, - [SMALL_STATE(3027)] = 88233, - [SMALL_STATE(3028)] = 88249, - [SMALL_STATE(3029)] = 88269, - [SMALL_STATE(3030)] = 88289, - [SMALL_STATE(3031)] = 88309, - [SMALL_STATE(3032)] = 88329, - [SMALL_STATE(3033)] = 88349, - [SMALL_STATE(3034)] = 88367, - [SMALL_STATE(3035)] = 88387, - [SMALL_STATE(3036)] = 88403, - [SMALL_STATE(3037)] = 88423, - [SMALL_STATE(3038)] = 88439, - [SMALL_STATE(3039)] = 88459, - [SMALL_STATE(3040)] = 88479, - [SMALL_STATE(3041)] = 88497, - [SMALL_STATE(3042)] = 88515, - [SMALL_STATE(3043)] = 88535, - [SMALL_STATE(3044)] = 88555, - [SMALL_STATE(3045)] = 88575, - [SMALL_STATE(3046)] = 88595, - [SMALL_STATE(3047)] = 88611, - [SMALL_STATE(3048)] = 88627, - [SMALL_STATE(3049)] = 88647, - [SMALL_STATE(3050)] = 88667, - [SMALL_STATE(3051)] = 88687, - [SMALL_STATE(3052)] = 88707, - [SMALL_STATE(3053)] = 88727, - [SMALL_STATE(3054)] = 88745, - [SMALL_STATE(3055)] = 88765, - [SMALL_STATE(3056)] = 88783, - [SMALL_STATE(3057)] = 88799, - [SMALL_STATE(3058)] = 88819, - [SMALL_STATE(3059)] = 88839, - [SMALL_STATE(3060)] = 88857, - [SMALL_STATE(3061)] = 88877, - [SMALL_STATE(3062)] = 88897, - [SMALL_STATE(3063)] = 88917, - [SMALL_STATE(3064)] = 88935, - [SMALL_STATE(3065)] = 88955, - [SMALL_STATE(3066)] = 88971, - [SMALL_STATE(3067)] = 88991, - [SMALL_STATE(3068)] = 89011, - [SMALL_STATE(3069)] = 89031, - [SMALL_STATE(3070)] = 89051, - [SMALL_STATE(3071)] = 89069, - [SMALL_STATE(3072)] = 89089, - [SMALL_STATE(3073)] = 89107, - [SMALL_STATE(3074)] = 89125, - [SMALL_STATE(3075)] = 89145, - [SMALL_STATE(3076)] = 89163, - [SMALL_STATE(3077)] = 89179, - [SMALL_STATE(3078)] = 89195, - [SMALL_STATE(3079)] = 89215, - [SMALL_STATE(3080)] = 89235, - [SMALL_STATE(3081)] = 89255, - [SMALL_STATE(3082)] = 89275, - [SMALL_STATE(3083)] = 89291, - [SMALL_STATE(3084)] = 89311, - [SMALL_STATE(3085)] = 89331, - [SMALL_STATE(3086)] = 89351, - [SMALL_STATE(3087)] = 89367, - [SMALL_STATE(3088)] = 89387, - [SMALL_STATE(3089)] = 89407, - [SMALL_STATE(3090)] = 89423, - [SMALL_STATE(3091)] = 89443, - [SMALL_STATE(3092)] = 89463, - [SMALL_STATE(3093)] = 89479, - [SMALL_STATE(3094)] = 89495, - [SMALL_STATE(3095)] = 89511, - [SMALL_STATE(3096)] = 89531, - [SMALL_STATE(3097)] = 89551, - [SMALL_STATE(3098)] = 89571, - [SMALL_STATE(3099)] = 89591, - [SMALL_STATE(3100)] = 89609, - [SMALL_STATE(3101)] = 89625, - [SMALL_STATE(3102)] = 89643, - [SMALL_STATE(3103)] = 89659, - [SMALL_STATE(3104)] = 89675, - [SMALL_STATE(3105)] = 89695, - [SMALL_STATE(3106)] = 89715, - [SMALL_STATE(3107)] = 89735, - [SMALL_STATE(3108)] = 89751, - [SMALL_STATE(3109)] = 89767, + [SMALL_STATE(2959)] = 86921, + [SMALL_STATE(2960)] = 86941, + [SMALL_STATE(2961)] = 86959, + [SMALL_STATE(2962)] = 86979, + [SMALL_STATE(2963)] = 86999, + [SMALL_STATE(2964)] = 87019, + [SMALL_STATE(2965)] = 87039, + [SMALL_STATE(2966)] = 87059, + [SMALL_STATE(2967)] = 87079, + [SMALL_STATE(2968)] = 87099, + [SMALL_STATE(2969)] = 87119, + [SMALL_STATE(2970)] = 87137, + [SMALL_STATE(2971)] = 87157, + [SMALL_STATE(2972)] = 87173, + [SMALL_STATE(2973)] = 87189, + [SMALL_STATE(2974)] = 87205, + [SMALL_STATE(2975)] = 87221, + [SMALL_STATE(2976)] = 87241, + [SMALL_STATE(2977)] = 87257, + [SMALL_STATE(2978)] = 87273, + [SMALL_STATE(2979)] = 87293, + [SMALL_STATE(2980)] = 87313, + [SMALL_STATE(2981)] = 87333, + [SMALL_STATE(2982)] = 87353, + [SMALL_STATE(2983)] = 87373, + [SMALL_STATE(2984)] = 87393, + [SMALL_STATE(2985)] = 87409, + [SMALL_STATE(2986)] = 87429, + [SMALL_STATE(2987)] = 87449, + [SMALL_STATE(2988)] = 87465, + [SMALL_STATE(2989)] = 87483, + [SMALL_STATE(2990)] = 87503, + [SMALL_STATE(2991)] = 87523, + [SMALL_STATE(2992)] = 87541, + [SMALL_STATE(2993)] = 87557, + [SMALL_STATE(2994)] = 87577, + [SMALL_STATE(2995)] = 87597, + [SMALL_STATE(2996)] = 87617, + [SMALL_STATE(2997)] = 87635, + [SMALL_STATE(2998)] = 87655, + [SMALL_STATE(2999)] = 87675, + [SMALL_STATE(3000)] = 87691, + [SMALL_STATE(3001)] = 87707, + [SMALL_STATE(3002)] = 87727, + [SMALL_STATE(3003)] = 87747, + [SMALL_STATE(3004)] = 87767, + [SMALL_STATE(3005)] = 87787, + [SMALL_STATE(3006)] = 87807, + [SMALL_STATE(3007)] = 87827, + [SMALL_STATE(3008)] = 87847, + [SMALL_STATE(3009)] = 87865, + [SMALL_STATE(3010)] = 87885, + [SMALL_STATE(3011)] = 87905, + [SMALL_STATE(3012)] = 87925, + [SMALL_STATE(3013)] = 87945, + [SMALL_STATE(3014)] = 87965, + [SMALL_STATE(3015)] = 87985, + [SMALL_STATE(3016)] = 88005, + [SMALL_STATE(3017)] = 88025, + [SMALL_STATE(3018)] = 88041, + [SMALL_STATE(3019)] = 88061, + [SMALL_STATE(3020)] = 88081, + [SMALL_STATE(3021)] = 88101, + [SMALL_STATE(3022)] = 88121, + [SMALL_STATE(3023)] = 88141, + [SMALL_STATE(3024)] = 88159, + [SMALL_STATE(3025)] = 88179, + [SMALL_STATE(3026)] = 88195, + [SMALL_STATE(3027)] = 88211, + [SMALL_STATE(3028)] = 88231, + [SMALL_STATE(3029)] = 88251, + [SMALL_STATE(3030)] = 88271, + [SMALL_STATE(3031)] = 88291, + [SMALL_STATE(3032)] = 88311, + [SMALL_STATE(3033)] = 88327, + [SMALL_STATE(3034)] = 88347, + [SMALL_STATE(3035)] = 88367, + [SMALL_STATE(3036)] = 88387, + [SMALL_STATE(3037)] = 88407, + [SMALL_STATE(3038)] = 88427, + [SMALL_STATE(3039)] = 88445, + [SMALL_STATE(3040)] = 88465, + [SMALL_STATE(3041)] = 88481, + [SMALL_STATE(3042)] = 88501, + [SMALL_STATE(3043)] = 88519, + [SMALL_STATE(3044)] = 88539, + [SMALL_STATE(3045)] = 88559, + [SMALL_STATE(3046)] = 88577, + [SMALL_STATE(3047)] = 88597, + [SMALL_STATE(3048)] = 88615, + [SMALL_STATE(3049)] = 88635, + [SMALL_STATE(3050)] = 88655, + [SMALL_STATE(3051)] = 88675, + [SMALL_STATE(3052)] = 88693, + [SMALL_STATE(3053)] = 88713, + [SMALL_STATE(3054)] = 88729, + [SMALL_STATE(3055)] = 88747, + [SMALL_STATE(3056)] = 88767, + [SMALL_STATE(3057)] = 88783, + [SMALL_STATE(3058)] = 88803, + [SMALL_STATE(3059)] = 88819, + [SMALL_STATE(3060)] = 88839, + [SMALL_STATE(3061)] = 88855, + [SMALL_STATE(3062)] = 88875, + [SMALL_STATE(3063)] = 88895, + [SMALL_STATE(3064)] = 88911, + [SMALL_STATE(3065)] = 88929, + [SMALL_STATE(3066)] = 88947, + [SMALL_STATE(3067)] = 88963, + [SMALL_STATE(3068)] = 88983, + [SMALL_STATE(3069)] = 89003, + [SMALL_STATE(3070)] = 89023, + [SMALL_STATE(3071)] = 89043, + [SMALL_STATE(3072)] = 89063, + [SMALL_STATE(3073)] = 89083, + [SMALL_STATE(3074)] = 89103, + [SMALL_STATE(3075)] = 89123, + [SMALL_STATE(3076)] = 89141, + [SMALL_STATE(3077)] = 89161, + [SMALL_STATE(3078)] = 89181, + [SMALL_STATE(3079)] = 89199, + [SMALL_STATE(3080)] = 89215, + [SMALL_STATE(3081)] = 89235, + [SMALL_STATE(3082)] = 89251, + [SMALL_STATE(3083)] = 89271, + [SMALL_STATE(3084)] = 89291, + [SMALL_STATE(3085)] = 89311, + [SMALL_STATE(3086)] = 89331, + [SMALL_STATE(3087)] = 89347, + [SMALL_STATE(3088)] = 89365, + [SMALL_STATE(3089)] = 89385, + [SMALL_STATE(3090)] = 89405, + [SMALL_STATE(3091)] = 89421, + [SMALL_STATE(3092)] = 89441, + [SMALL_STATE(3093)] = 89461, + [SMALL_STATE(3094)] = 89481, + [SMALL_STATE(3095)] = 89501, + [SMALL_STATE(3096)] = 89517, + [SMALL_STATE(3097)] = 89537, + [SMALL_STATE(3098)] = 89557, + [SMALL_STATE(3099)] = 89577, + [SMALL_STATE(3100)] = 89597, + [SMALL_STATE(3101)] = 89617, + [SMALL_STATE(3102)] = 89637, + [SMALL_STATE(3103)] = 89653, + [SMALL_STATE(3104)] = 89673, + [SMALL_STATE(3105)] = 89693, + [SMALL_STATE(3106)] = 89713, + [SMALL_STATE(3107)] = 89729, + [SMALL_STATE(3108)] = 89745, + [SMALL_STATE(3109)] = 89765, [SMALL_STATE(3110)] = 89785, - [SMALL_STATE(3111)] = 89805, - [SMALL_STATE(3112)] = 89825, - [SMALL_STATE(3113)] = 89845, - [SMALL_STATE(3114)] = 89865, - [SMALL_STATE(3115)] = 89885, - [SMALL_STATE(3116)] = 89905, - [SMALL_STATE(3117)] = 89925, - [SMALL_STATE(3118)] = 89945, - [SMALL_STATE(3119)] = 89963, - [SMALL_STATE(3120)] = 89983, - [SMALL_STATE(3121)] = 90003, - [SMALL_STATE(3122)] = 90021, - [SMALL_STATE(3123)] = 90041, - [SMALL_STATE(3124)] = 90061, - [SMALL_STATE(3125)] = 90081, - [SMALL_STATE(3126)] = 90101, - [SMALL_STATE(3127)] = 90121, - [SMALL_STATE(3128)] = 90141, - [SMALL_STATE(3129)] = 90159, - [SMALL_STATE(3130)] = 90179, - [SMALL_STATE(3131)] = 90199, - [SMALL_STATE(3132)] = 90219, - [SMALL_STATE(3133)] = 90235, - [SMALL_STATE(3134)] = 90255, - [SMALL_STATE(3135)] = 90273, - [SMALL_STATE(3136)] = 90293, - [SMALL_STATE(3137)] = 90313, - [SMALL_STATE(3138)] = 90333, - [SMALL_STATE(3139)] = 90351, - [SMALL_STATE(3140)] = 90371, - [SMALL_STATE(3141)] = 90387, - [SMALL_STATE(3142)] = 90407, - [SMALL_STATE(3143)] = 90425, - [SMALL_STATE(3144)] = 90445, - [SMALL_STATE(3145)] = 90465, - [SMALL_STATE(3146)] = 90485, - [SMALL_STATE(3147)] = 90505, - [SMALL_STATE(3148)] = 90525, - [SMALL_STATE(3149)] = 90545, - [SMALL_STATE(3150)] = 90565, - [SMALL_STATE(3151)] = 90585, - [SMALL_STATE(3152)] = 90605, - [SMALL_STATE(3153)] = 90621, - [SMALL_STATE(3154)] = 90641, - [SMALL_STATE(3155)] = 90661, - [SMALL_STATE(3156)] = 90681, - [SMALL_STATE(3157)] = 90698, - [SMALL_STATE(3158)] = 90715, - [SMALL_STATE(3159)] = 90732, - [SMALL_STATE(3160)] = 90749, - [SMALL_STATE(3161)] = 90766, - [SMALL_STATE(3162)] = 90783, - [SMALL_STATE(3163)] = 90800, - [SMALL_STATE(3164)] = 90815, - [SMALL_STATE(3165)] = 90832, - [SMALL_STATE(3166)] = 90849, - [SMALL_STATE(3167)] = 90866, - [SMALL_STATE(3168)] = 90883, - [SMALL_STATE(3169)] = 90900, - [SMALL_STATE(3170)] = 90917, - [SMALL_STATE(3171)] = 90932, - [SMALL_STATE(3172)] = 90949, - [SMALL_STATE(3173)] = 90966, - [SMALL_STATE(3174)] = 90983, - [SMALL_STATE(3175)] = 91000, - [SMALL_STATE(3176)] = 91017, - [SMALL_STATE(3177)] = 91034, - [SMALL_STATE(3178)] = 91049, - [SMALL_STATE(3179)] = 91066, - [SMALL_STATE(3180)] = 91083, - [SMALL_STATE(3181)] = 91100, - [SMALL_STATE(3182)] = 91115, - [SMALL_STATE(3183)] = 91132, - [SMALL_STATE(3184)] = 91147, - [SMALL_STATE(3185)] = 91162, - [SMALL_STATE(3186)] = 91179, - [SMALL_STATE(3187)] = 91196, - [SMALL_STATE(3188)] = 91213, - [SMALL_STATE(3189)] = 91228, - [SMALL_STATE(3190)] = 91245, - [SMALL_STATE(3191)] = 91262, - [SMALL_STATE(3192)] = 91277, - [SMALL_STATE(3193)] = 91294, - [SMALL_STATE(3194)] = 91311, - [SMALL_STATE(3195)] = 91328, - [SMALL_STATE(3196)] = 91345, - [SMALL_STATE(3197)] = 91362, - [SMALL_STATE(3198)] = 91379, - [SMALL_STATE(3199)] = 91396, - [SMALL_STATE(3200)] = 91411, - [SMALL_STATE(3201)] = 91428, - [SMALL_STATE(3202)] = 91445, - [SMALL_STATE(3203)] = 91462, - [SMALL_STATE(3204)] = 91479, - [SMALL_STATE(3205)] = 91496, - [SMALL_STATE(3206)] = 91513, - [SMALL_STATE(3207)] = 91528, - [SMALL_STATE(3208)] = 91545, - [SMALL_STATE(3209)] = 91562, - [SMALL_STATE(3210)] = 91579, - [SMALL_STATE(3211)] = 91596, - [SMALL_STATE(3212)] = 91613, - [SMALL_STATE(3213)] = 91630, - [SMALL_STATE(3214)] = 91647, - [SMALL_STATE(3215)] = 91664, - [SMALL_STATE(3216)] = 91679, - [SMALL_STATE(3217)] = 91694, - [SMALL_STATE(3218)] = 91711, - [SMALL_STATE(3219)] = 91728, - [SMALL_STATE(3220)] = 91743, - [SMALL_STATE(3221)] = 91758, - [SMALL_STATE(3222)] = 91775, - [SMALL_STATE(3223)] = 91790, - [SMALL_STATE(3224)] = 91807, - [SMALL_STATE(3225)] = 91822, - [SMALL_STATE(3226)] = 91839, - [SMALL_STATE(3227)] = 91856, - [SMALL_STATE(3228)] = 91873, - [SMALL_STATE(3229)] = 91890, - [SMALL_STATE(3230)] = 91907, - [SMALL_STATE(3231)] = 91924, - [SMALL_STATE(3232)] = 91941, - [SMALL_STATE(3233)] = 91958, - [SMALL_STATE(3234)] = 91975, - [SMALL_STATE(3235)] = 91990, - [SMALL_STATE(3236)] = 92007, - [SMALL_STATE(3237)] = 92024, - [SMALL_STATE(3238)] = 92041, - [SMALL_STATE(3239)] = 92056, - [SMALL_STATE(3240)] = 92073, - [SMALL_STATE(3241)] = 92090, - [SMALL_STATE(3242)] = 92107, - [SMALL_STATE(3243)] = 92124, - [SMALL_STATE(3244)] = 92141, - [SMALL_STATE(3245)] = 92156, - [SMALL_STATE(3246)] = 92173, - [SMALL_STATE(3247)] = 92190, - [SMALL_STATE(3248)] = 92207, - [SMALL_STATE(3249)] = 92224, - [SMALL_STATE(3250)] = 92241, - [SMALL_STATE(3251)] = 92258, - [SMALL_STATE(3252)] = 92275, - [SMALL_STATE(3253)] = 92292, - [SMALL_STATE(3254)] = 92309, - [SMALL_STATE(3255)] = 92326, - [SMALL_STATE(3256)] = 92343, - [SMALL_STATE(3257)] = 92360, - [SMALL_STATE(3258)] = 92375, - [SMALL_STATE(3259)] = 92390, - [SMALL_STATE(3260)] = 92405, - [SMALL_STATE(3261)] = 92422, - [SMALL_STATE(3262)] = 92439, - [SMALL_STATE(3263)] = 92456, - [SMALL_STATE(3264)] = 92473, - [SMALL_STATE(3265)] = 92490, - [SMALL_STATE(3266)] = 92507, - [SMALL_STATE(3267)] = 92524, - [SMALL_STATE(3268)] = 92541, - [SMALL_STATE(3269)] = 92558, - [SMALL_STATE(3270)] = 92573, - [SMALL_STATE(3271)] = 92588, - [SMALL_STATE(3272)] = 92605, - [SMALL_STATE(3273)] = 92620, - [SMALL_STATE(3274)] = 92637, - [SMALL_STATE(3275)] = 92654, - [SMALL_STATE(3276)] = 92671, - [SMALL_STATE(3277)] = 92688, - [SMALL_STATE(3278)] = 92705, - [SMALL_STATE(3279)] = 92720, - [SMALL_STATE(3280)] = 92737, - [SMALL_STATE(3281)] = 92754, - [SMALL_STATE(3282)] = 92771, - [SMALL_STATE(3283)] = 92788, - [SMALL_STATE(3284)] = 92805, - [SMALL_STATE(3285)] = 92822, - [SMALL_STATE(3286)] = 92839, - [SMALL_STATE(3287)] = 92856, - [SMALL_STATE(3288)] = 92873, - [SMALL_STATE(3289)] = 92890, - [SMALL_STATE(3290)] = 92907, - [SMALL_STATE(3291)] = 92924, - [SMALL_STATE(3292)] = 92941, - [SMALL_STATE(3293)] = 92958, - [SMALL_STATE(3294)] = 92975, - [SMALL_STATE(3295)] = 92992, - [SMALL_STATE(3296)] = 93009, - [SMALL_STATE(3297)] = 93026, - [SMALL_STATE(3298)] = 93041, - [SMALL_STATE(3299)] = 93058, - [SMALL_STATE(3300)] = 93075, - [SMALL_STATE(3301)] = 93090, - [SMALL_STATE(3302)] = 93107, - [SMALL_STATE(3303)] = 93124, - [SMALL_STATE(3304)] = 93141, - [SMALL_STATE(3305)] = 93156, - [SMALL_STATE(3306)] = 93173, - [SMALL_STATE(3307)] = 93190, - [SMALL_STATE(3308)] = 93207, - [SMALL_STATE(3309)] = 93224, - [SMALL_STATE(3310)] = 93241, - [SMALL_STATE(3311)] = 93258, - [SMALL_STATE(3312)] = 93273, - [SMALL_STATE(3313)] = 93290, - [SMALL_STATE(3314)] = 93307, - [SMALL_STATE(3315)] = 93324, - [SMALL_STATE(3316)] = 93341, - [SMALL_STATE(3317)] = 93356, - [SMALL_STATE(3318)] = 93373, - [SMALL_STATE(3319)] = 93390, - [SMALL_STATE(3320)] = 93407, - [SMALL_STATE(3321)] = 93424, - [SMALL_STATE(3322)] = 93441, - [SMALL_STATE(3323)] = 93456, - [SMALL_STATE(3324)] = 93473, - [SMALL_STATE(3325)] = 93490, - [SMALL_STATE(3326)] = 93507, - [SMALL_STATE(3327)] = 93522, - [SMALL_STATE(3328)] = 93539, - [SMALL_STATE(3329)] = 93556, - [SMALL_STATE(3330)] = 93573, - [SMALL_STATE(3331)] = 93590, - [SMALL_STATE(3332)] = 93607, - [SMALL_STATE(3333)] = 93624, - [SMALL_STATE(3334)] = 93639, - [SMALL_STATE(3335)] = 93656, - [SMALL_STATE(3336)] = 93673, - [SMALL_STATE(3337)] = 93690, - [SMALL_STATE(3338)] = 93707, - [SMALL_STATE(3339)] = 93724, - [SMALL_STATE(3340)] = 93739, - [SMALL_STATE(3341)] = 93756, - [SMALL_STATE(3342)] = 93771, - [SMALL_STATE(3343)] = 93788, - [SMALL_STATE(3344)] = 93805, - [SMALL_STATE(3345)] = 93822, - [SMALL_STATE(3346)] = 93839, - [SMALL_STATE(3347)] = 93856, - [SMALL_STATE(3348)] = 93873, - [SMALL_STATE(3349)] = 93888, - [SMALL_STATE(3350)] = 93905, - [SMALL_STATE(3351)] = 93922, - [SMALL_STATE(3352)] = 93939, - [SMALL_STATE(3353)] = 93956, - [SMALL_STATE(3354)] = 93973, - [SMALL_STATE(3355)] = 93990, - [SMALL_STATE(3356)] = 94007, - [SMALL_STATE(3357)] = 94024, - [SMALL_STATE(3358)] = 94041, - [SMALL_STATE(3359)] = 94058, - [SMALL_STATE(3360)] = 94075, - [SMALL_STATE(3361)] = 94092, - [SMALL_STATE(3362)] = 94107, - [SMALL_STATE(3363)] = 94124, - [SMALL_STATE(3364)] = 94139, - [SMALL_STATE(3365)] = 94156, - [SMALL_STATE(3366)] = 94171, - [SMALL_STATE(3367)] = 94188, - [SMALL_STATE(3368)] = 94205, - [SMALL_STATE(3369)] = 94222, - [SMALL_STATE(3370)] = 94239, - [SMALL_STATE(3371)] = 94254, - [SMALL_STATE(3372)] = 94271, - [SMALL_STATE(3373)] = 94286, - [SMALL_STATE(3374)] = 94303, - [SMALL_STATE(3375)] = 94320, - [SMALL_STATE(3376)] = 94337, - [SMALL_STATE(3377)] = 94354, - [SMALL_STATE(3378)] = 94371, - [SMALL_STATE(3379)] = 94388, - [SMALL_STATE(3380)] = 94403, - [SMALL_STATE(3381)] = 94420, - [SMALL_STATE(3382)] = 94437, - [SMALL_STATE(3383)] = 94452, - [SMALL_STATE(3384)] = 94469, - [SMALL_STATE(3385)] = 94486, - [SMALL_STATE(3386)] = 94503, - [SMALL_STATE(3387)] = 94520, - [SMALL_STATE(3388)] = 94537, - [SMALL_STATE(3389)] = 94554, - [SMALL_STATE(3390)] = 94571, - [SMALL_STATE(3391)] = 94586, - [SMALL_STATE(3392)] = 94603, - [SMALL_STATE(3393)] = 94618, - [SMALL_STATE(3394)] = 94635, - [SMALL_STATE(3395)] = 94652, - [SMALL_STATE(3396)] = 94669, - [SMALL_STATE(3397)] = 94686, - [SMALL_STATE(3398)] = 94701, - [SMALL_STATE(3399)] = 94718, - [SMALL_STATE(3400)] = 94735, - [SMALL_STATE(3401)] = 94752, - [SMALL_STATE(3402)] = 94769, - [SMALL_STATE(3403)] = 94786, - [SMALL_STATE(3404)] = 94803, - [SMALL_STATE(3405)] = 94820, - [SMALL_STATE(3406)] = 94837, - [SMALL_STATE(3407)] = 94854, - [SMALL_STATE(3408)] = 94871, - [SMALL_STATE(3409)] = 94888, - [SMALL_STATE(3410)] = 94903, - [SMALL_STATE(3411)] = 94920, - [SMALL_STATE(3412)] = 94935, - [SMALL_STATE(3413)] = 94950, - [SMALL_STATE(3414)] = 94967, - [SMALL_STATE(3415)] = 94982, - [SMALL_STATE(3416)] = 94999, - [SMALL_STATE(3417)] = 95014, - [SMALL_STATE(3418)] = 95031, - [SMALL_STATE(3419)] = 95048, - [SMALL_STATE(3420)] = 95065, - [SMALL_STATE(3421)] = 95082, - [SMALL_STATE(3422)] = 95099, - [SMALL_STATE(3423)] = 95116, - [SMALL_STATE(3424)] = 95133, - [SMALL_STATE(3425)] = 95150, - [SMALL_STATE(3426)] = 95167, - [SMALL_STATE(3427)] = 95184, - [SMALL_STATE(3428)] = 95201, - [SMALL_STATE(3429)] = 95216, - [SMALL_STATE(3430)] = 95233, - [SMALL_STATE(3431)] = 95250, - [SMALL_STATE(3432)] = 95267, - [SMALL_STATE(3433)] = 95284, - [SMALL_STATE(3434)] = 95301, - [SMALL_STATE(3435)] = 95318, - [SMALL_STATE(3436)] = 95333, - [SMALL_STATE(3437)] = 95350, - [SMALL_STATE(3438)] = 95367, - [SMALL_STATE(3439)] = 95384, - [SMALL_STATE(3440)] = 95401, - [SMALL_STATE(3441)] = 95418, - [SMALL_STATE(3442)] = 95435, - [SMALL_STATE(3443)] = 95452, - [SMALL_STATE(3444)] = 95469, - [SMALL_STATE(3445)] = 95486, - [SMALL_STATE(3446)] = 95503, - [SMALL_STATE(3447)] = 95520, - [SMALL_STATE(3448)] = 95535, - [SMALL_STATE(3449)] = 95550, - [SMALL_STATE(3450)] = 95567, - [SMALL_STATE(3451)] = 95584, - [SMALL_STATE(3452)] = 95599, - [SMALL_STATE(3453)] = 95616, - [SMALL_STATE(3454)] = 95633, - [SMALL_STATE(3455)] = 95650, - [SMALL_STATE(3456)] = 95667, - [SMALL_STATE(3457)] = 95684, - [SMALL_STATE(3458)] = 95701, - [SMALL_STATE(3459)] = 95716, - [SMALL_STATE(3460)] = 95730, - [SMALL_STATE(3461)] = 95744, - [SMALL_STATE(3462)] = 95758, - [SMALL_STATE(3463)] = 95772, - [SMALL_STATE(3464)] = 95786, - [SMALL_STATE(3465)] = 95800, - [SMALL_STATE(3466)] = 95814, - [SMALL_STATE(3467)] = 95828, - [SMALL_STATE(3468)] = 95842, - [SMALL_STATE(3469)] = 95856, - [SMALL_STATE(3470)] = 95870, - [SMALL_STATE(3471)] = 95884, - [SMALL_STATE(3472)] = 95898, - [SMALL_STATE(3473)] = 95912, - [SMALL_STATE(3474)] = 95926, - [SMALL_STATE(3475)] = 95940, - [SMALL_STATE(3476)] = 95954, - [SMALL_STATE(3477)] = 95968, - [SMALL_STATE(3478)] = 95982, - [SMALL_STATE(3479)] = 95996, - [SMALL_STATE(3480)] = 96010, - [SMALL_STATE(3481)] = 96024, - [SMALL_STATE(3482)] = 96038, - [SMALL_STATE(3483)] = 96052, - [SMALL_STATE(3484)] = 96066, - [SMALL_STATE(3485)] = 96080, - [SMALL_STATE(3486)] = 96094, - [SMALL_STATE(3487)] = 96108, - [SMALL_STATE(3488)] = 96122, - [SMALL_STATE(3489)] = 96136, - [SMALL_STATE(3490)] = 96150, - [SMALL_STATE(3491)] = 96164, - [SMALL_STATE(3492)] = 96178, - [SMALL_STATE(3493)] = 96192, - [SMALL_STATE(3494)] = 96206, - [SMALL_STATE(3495)] = 96220, - [SMALL_STATE(3496)] = 96234, - [SMALL_STATE(3497)] = 96248, - [SMALL_STATE(3498)] = 96262, - [SMALL_STATE(3499)] = 96276, - [SMALL_STATE(3500)] = 96290, - [SMALL_STATE(3501)] = 96304, - [SMALL_STATE(3502)] = 96318, - [SMALL_STATE(3503)] = 96332, - [SMALL_STATE(3504)] = 96346, - [SMALL_STATE(3505)] = 96360, - [SMALL_STATE(3506)] = 96374, - [SMALL_STATE(3507)] = 96388, - [SMALL_STATE(3508)] = 96402, - [SMALL_STATE(3509)] = 96416, - [SMALL_STATE(3510)] = 96430, - [SMALL_STATE(3511)] = 96444, - [SMALL_STATE(3512)] = 96458, - [SMALL_STATE(3513)] = 96472, - [SMALL_STATE(3514)] = 96486, - [SMALL_STATE(3515)] = 96500, - [SMALL_STATE(3516)] = 96514, - [SMALL_STATE(3517)] = 96528, - [SMALL_STATE(3518)] = 96542, - [SMALL_STATE(3519)] = 96556, - [SMALL_STATE(3520)] = 96570, - [SMALL_STATE(3521)] = 96584, - [SMALL_STATE(3522)] = 96598, - [SMALL_STATE(3523)] = 96612, - [SMALL_STATE(3524)] = 96626, - [SMALL_STATE(3525)] = 96640, - [SMALL_STATE(3526)] = 96654, - [SMALL_STATE(3527)] = 96668, - [SMALL_STATE(3528)] = 96682, - [SMALL_STATE(3529)] = 96696, - [SMALL_STATE(3530)] = 96710, - [SMALL_STATE(3531)] = 96724, - [SMALL_STATE(3532)] = 96738, - [SMALL_STATE(3533)] = 96752, - [SMALL_STATE(3534)] = 96766, - [SMALL_STATE(3535)] = 96780, - [SMALL_STATE(3536)] = 96794, - [SMALL_STATE(3537)] = 96808, - [SMALL_STATE(3538)] = 96822, - [SMALL_STATE(3539)] = 96836, - [SMALL_STATE(3540)] = 96850, - [SMALL_STATE(3541)] = 96864, - [SMALL_STATE(3542)] = 96878, - [SMALL_STATE(3543)] = 96892, - [SMALL_STATE(3544)] = 96906, - [SMALL_STATE(3545)] = 96920, - [SMALL_STATE(3546)] = 96934, - [SMALL_STATE(3547)] = 96948, - [SMALL_STATE(3548)] = 96962, - [SMALL_STATE(3549)] = 96976, - [SMALL_STATE(3550)] = 96990, - [SMALL_STATE(3551)] = 97004, - [SMALL_STATE(3552)] = 97018, - [SMALL_STATE(3553)] = 97032, - [SMALL_STATE(3554)] = 97046, - [SMALL_STATE(3555)] = 97060, - [SMALL_STATE(3556)] = 97074, - [SMALL_STATE(3557)] = 97088, - [SMALL_STATE(3558)] = 97102, - [SMALL_STATE(3559)] = 97116, - [SMALL_STATE(3560)] = 97130, - [SMALL_STATE(3561)] = 97144, - [SMALL_STATE(3562)] = 97158, - [SMALL_STATE(3563)] = 97172, - [SMALL_STATE(3564)] = 97186, - [SMALL_STATE(3565)] = 97200, - [SMALL_STATE(3566)] = 97214, - [SMALL_STATE(3567)] = 97228, - [SMALL_STATE(3568)] = 97242, - [SMALL_STATE(3569)] = 97256, - [SMALL_STATE(3570)] = 97270, - [SMALL_STATE(3571)] = 97284, - [SMALL_STATE(3572)] = 97298, - [SMALL_STATE(3573)] = 97312, - [SMALL_STATE(3574)] = 97326, - [SMALL_STATE(3575)] = 97340, - [SMALL_STATE(3576)] = 97354, - [SMALL_STATE(3577)] = 97368, - [SMALL_STATE(3578)] = 97382, - [SMALL_STATE(3579)] = 97396, - [SMALL_STATE(3580)] = 97410, - [SMALL_STATE(3581)] = 97424, - [SMALL_STATE(3582)] = 97438, - [SMALL_STATE(3583)] = 97452, - [SMALL_STATE(3584)] = 97466, - [SMALL_STATE(3585)] = 97480, - [SMALL_STATE(3586)] = 97494, - [SMALL_STATE(3587)] = 97508, - [SMALL_STATE(3588)] = 97522, - [SMALL_STATE(3589)] = 97536, - [SMALL_STATE(3590)] = 97550, - [SMALL_STATE(3591)] = 97564, - [SMALL_STATE(3592)] = 97578, - [SMALL_STATE(3593)] = 97592, - [SMALL_STATE(3594)] = 97606, - [SMALL_STATE(3595)] = 97620, - [SMALL_STATE(3596)] = 97634, - [SMALL_STATE(3597)] = 97648, - [SMALL_STATE(3598)] = 97662, - [SMALL_STATE(3599)] = 97676, - [SMALL_STATE(3600)] = 97690, - [SMALL_STATE(3601)] = 97704, - [SMALL_STATE(3602)] = 97718, - [SMALL_STATE(3603)] = 97732, - [SMALL_STATE(3604)] = 97746, - [SMALL_STATE(3605)] = 97760, - [SMALL_STATE(3606)] = 97774, - [SMALL_STATE(3607)] = 97788, - [SMALL_STATE(3608)] = 97802, - [SMALL_STATE(3609)] = 97816, - [SMALL_STATE(3610)] = 97830, - [SMALL_STATE(3611)] = 97844, - [SMALL_STATE(3612)] = 97858, - [SMALL_STATE(3613)] = 97872, - [SMALL_STATE(3614)] = 97886, - [SMALL_STATE(3615)] = 97900, - [SMALL_STATE(3616)] = 97914, - [SMALL_STATE(3617)] = 97928, - [SMALL_STATE(3618)] = 97942, - [SMALL_STATE(3619)] = 97956, - [SMALL_STATE(3620)] = 97970, - [SMALL_STATE(3621)] = 97984, - [SMALL_STATE(3622)] = 97998, - [SMALL_STATE(3623)] = 98012, - [SMALL_STATE(3624)] = 98026, - [SMALL_STATE(3625)] = 98040, - [SMALL_STATE(3626)] = 98054, - [SMALL_STATE(3627)] = 98068, - [SMALL_STATE(3628)] = 98082, - [SMALL_STATE(3629)] = 98096, - [SMALL_STATE(3630)] = 98110, - [SMALL_STATE(3631)] = 98124, - [SMALL_STATE(3632)] = 98138, - [SMALL_STATE(3633)] = 98152, - [SMALL_STATE(3634)] = 98166, - [SMALL_STATE(3635)] = 98180, - [SMALL_STATE(3636)] = 98194, - [SMALL_STATE(3637)] = 98208, - [SMALL_STATE(3638)] = 98222, - [SMALL_STATE(3639)] = 98236, - [SMALL_STATE(3640)] = 98250, - [SMALL_STATE(3641)] = 98264, - [SMALL_STATE(3642)] = 98278, - [SMALL_STATE(3643)] = 98292, - [SMALL_STATE(3644)] = 98306, - [SMALL_STATE(3645)] = 98320, - [SMALL_STATE(3646)] = 98334, - [SMALL_STATE(3647)] = 98348, - [SMALL_STATE(3648)] = 98362, - [SMALL_STATE(3649)] = 98376, - [SMALL_STATE(3650)] = 98390, - [SMALL_STATE(3651)] = 98404, - [SMALL_STATE(3652)] = 98418, - [SMALL_STATE(3653)] = 98432, - [SMALL_STATE(3654)] = 98446, - [SMALL_STATE(3655)] = 98460, - [SMALL_STATE(3656)] = 98474, - [SMALL_STATE(3657)] = 98488, - [SMALL_STATE(3658)] = 98502, - [SMALL_STATE(3659)] = 98516, - [SMALL_STATE(3660)] = 98530, - [SMALL_STATE(3661)] = 98544, - [SMALL_STATE(3662)] = 98558, - [SMALL_STATE(3663)] = 98572, - [SMALL_STATE(3664)] = 98586, - [SMALL_STATE(3665)] = 98600, - [SMALL_STATE(3666)] = 98614, - [SMALL_STATE(3667)] = 98628, - [SMALL_STATE(3668)] = 98642, - [SMALL_STATE(3669)] = 98656, - [SMALL_STATE(3670)] = 98670, - [SMALL_STATE(3671)] = 98684, - [SMALL_STATE(3672)] = 98698, - [SMALL_STATE(3673)] = 98712, - [SMALL_STATE(3674)] = 98726, - [SMALL_STATE(3675)] = 98740, - [SMALL_STATE(3676)] = 98754, - [SMALL_STATE(3677)] = 98768, - [SMALL_STATE(3678)] = 98782, - [SMALL_STATE(3679)] = 98796, - [SMALL_STATE(3680)] = 98810, - [SMALL_STATE(3681)] = 98824, - [SMALL_STATE(3682)] = 98838, - [SMALL_STATE(3683)] = 98852, - [SMALL_STATE(3684)] = 98866, - [SMALL_STATE(3685)] = 98880, - [SMALL_STATE(3686)] = 98894, - [SMALL_STATE(3687)] = 98908, - [SMALL_STATE(3688)] = 98922, - [SMALL_STATE(3689)] = 98936, - [SMALL_STATE(3690)] = 98950, - [SMALL_STATE(3691)] = 98964, - [SMALL_STATE(3692)] = 98978, - [SMALL_STATE(3693)] = 98992, - [SMALL_STATE(3694)] = 99006, - [SMALL_STATE(3695)] = 99020, - [SMALL_STATE(3696)] = 99034, - [SMALL_STATE(3697)] = 99048, - [SMALL_STATE(3698)] = 99062, - [SMALL_STATE(3699)] = 99076, - [SMALL_STATE(3700)] = 99090, - [SMALL_STATE(3701)] = 99104, - [SMALL_STATE(3702)] = 99118, - [SMALL_STATE(3703)] = 99132, - [SMALL_STATE(3704)] = 99146, - [SMALL_STATE(3705)] = 99160, - [SMALL_STATE(3706)] = 99174, - [SMALL_STATE(3707)] = 99188, - [SMALL_STATE(3708)] = 99202, - [SMALL_STATE(3709)] = 99216, - [SMALL_STATE(3710)] = 99230, - [SMALL_STATE(3711)] = 99244, - [SMALL_STATE(3712)] = 99258, - [SMALL_STATE(3713)] = 99272, - [SMALL_STATE(3714)] = 99286, - [SMALL_STATE(3715)] = 99300, - [SMALL_STATE(3716)] = 99314, - [SMALL_STATE(3717)] = 99328, - [SMALL_STATE(3718)] = 99342, - [SMALL_STATE(3719)] = 99356, - [SMALL_STATE(3720)] = 99370, - [SMALL_STATE(3721)] = 99384, - [SMALL_STATE(3722)] = 99398, - [SMALL_STATE(3723)] = 99412, - [SMALL_STATE(3724)] = 99426, - [SMALL_STATE(3725)] = 99440, - [SMALL_STATE(3726)] = 99454, - [SMALL_STATE(3727)] = 99468, - [SMALL_STATE(3728)] = 99482, - [SMALL_STATE(3729)] = 99496, - [SMALL_STATE(3730)] = 99510, - [SMALL_STATE(3731)] = 99524, - [SMALL_STATE(3732)] = 99538, - [SMALL_STATE(3733)] = 99552, - [SMALL_STATE(3734)] = 99566, - [SMALL_STATE(3735)] = 99580, - [SMALL_STATE(3736)] = 99594, - [SMALL_STATE(3737)] = 99608, - [SMALL_STATE(3738)] = 99622, - [SMALL_STATE(3739)] = 99636, - [SMALL_STATE(3740)] = 99650, - [SMALL_STATE(3741)] = 99664, - [SMALL_STATE(3742)] = 99678, - [SMALL_STATE(3743)] = 99692, - [SMALL_STATE(3744)] = 99706, - [SMALL_STATE(3745)] = 99720, - [SMALL_STATE(3746)] = 99734, - [SMALL_STATE(3747)] = 99748, - [SMALL_STATE(3748)] = 99762, - [SMALL_STATE(3749)] = 99776, - [SMALL_STATE(3750)] = 99790, - [SMALL_STATE(3751)] = 99804, - [SMALL_STATE(3752)] = 99818, - [SMALL_STATE(3753)] = 99832, - [SMALL_STATE(3754)] = 99846, - [SMALL_STATE(3755)] = 99860, - [SMALL_STATE(3756)] = 99874, - [SMALL_STATE(3757)] = 99888, - [SMALL_STATE(3758)] = 99902, - [SMALL_STATE(3759)] = 99916, - [SMALL_STATE(3760)] = 99930, - [SMALL_STATE(3761)] = 99944, - [SMALL_STATE(3762)] = 99958, - [SMALL_STATE(3763)] = 99972, - [SMALL_STATE(3764)] = 99986, - [SMALL_STATE(3765)] = 100000, - [SMALL_STATE(3766)] = 100014, - [SMALL_STATE(3767)] = 100028, - [SMALL_STATE(3768)] = 100042, - [SMALL_STATE(3769)] = 100056, - [SMALL_STATE(3770)] = 100070, - [SMALL_STATE(3771)] = 100084, - [SMALL_STATE(3772)] = 100098, - [SMALL_STATE(3773)] = 100112, - [SMALL_STATE(3774)] = 100126, - [SMALL_STATE(3775)] = 100140, - [SMALL_STATE(3776)] = 100154, - [SMALL_STATE(3777)] = 100168, - [SMALL_STATE(3778)] = 100182, - [SMALL_STATE(3779)] = 100186, - [SMALL_STATE(3780)] = 100190, - [SMALL_STATE(3781)] = 100194, - [SMALL_STATE(3782)] = 100198, - [SMALL_STATE(3783)] = 100202, - [SMALL_STATE(3784)] = 100206, + [SMALL_STATE(3111)] = 89801, + [SMALL_STATE(3112)] = 89819, + [SMALL_STATE(3113)] = 89839, + [SMALL_STATE(3114)] = 89859, + [SMALL_STATE(3115)] = 89879, + [SMALL_STATE(3116)] = 89897, + [SMALL_STATE(3117)] = 89913, + [SMALL_STATE(3118)] = 89933, + [SMALL_STATE(3119)] = 89953, + [SMALL_STATE(3120)] = 89973, + [SMALL_STATE(3121)] = 89993, + [SMALL_STATE(3122)] = 90009, + [SMALL_STATE(3123)] = 90025, + [SMALL_STATE(3124)] = 90043, + [SMALL_STATE(3125)] = 90063, + [SMALL_STATE(3126)] = 90083, + [SMALL_STATE(3127)] = 90103, + [SMALL_STATE(3128)] = 90119, + [SMALL_STATE(3129)] = 90139, + [SMALL_STATE(3130)] = 90155, + [SMALL_STATE(3131)] = 90175, + [SMALL_STATE(3132)] = 90191, + [SMALL_STATE(3133)] = 90207, + [SMALL_STATE(3134)] = 90227, + [SMALL_STATE(3135)] = 90247, + [SMALL_STATE(3136)] = 90267, + [SMALL_STATE(3137)] = 90287, + [SMALL_STATE(3138)] = 90307, + [SMALL_STATE(3139)] = 90327, + [SMALL_STATE(3140)] = 90347, + [SMALL_STATE(3141)] = 90367, + [SMALL_STATE(3142)] = 90385, + [SMALL_STATE(3143)] = 90401, + [SMALL_STATE(3144)] = 90421, + [SMALL_STATE(3145)] = 90441, + [SMALL_STATE(3146)] = 90461, + [SMALL_STATE(3147)] = 90481, + [SMALL_STATE(3148)] = 90501, + [SMALL_STATE(3149)] = 90521, + [SMALL_STATE(3150)] = 90541, + [SMALL_STATE(3151)] = 90561, + [SMALL_STATE(3152)] = 90581, + [SMALL_STATE(3153)] = 90597, + [SMALL_STATE(3154)] = 90617, + [SMALL_STATE(3155)] = 90637, + [SMALL_STATE(3156)] = 90657, + [SMALL_STATE(3157)] = 90677, + [SMALL_STATE(3158)] = 90697, + [SMALL_STATE(3159)] = 90714, + [SMALL_STATE(3160)] = 90731, + [SMALL_STATE(3161)] = 90748, + [SMALL_STATE(3162)] = 90765, + [SMALL_STATE(3163)] = 90782, + [SMALL_STATE(3164)] = 90799, + [SMALL_STATE(3165)] = 90814, + [SMALL_STATE(3166)] = 90831, + [SMALL_STATE(3167)] = 90848, + [SMALL_STATE(3168)] = 90863, + [SMALL_STATE(3169)] = 90880, + [SMALL_STATE(3170)] = 90897, + [SMALL_STATE(3171)] = 90912, + [SMALL_STATE(3172)] = 90929, + [SMALL_STATE(3173)] = 90946, + [SMALL_STATE(3174)] = 90963, + [SMALL_STATE(3175)] = 90980, + [SMALL_STATE(3176)] = 90997, + [SMALL_STATE(3177)] = 91014, + [SMALL_STATE(3178)] = 91031, + [SMALL_STATE(3179)] = 91046, + [SMALL_STATE(3180)] = 91063, + [SMALL_STATE(3181)] = 91080, + [SMALL_STATE(3182)] = 91097, + [SMALL_STATE(3183)] = 91114, + [SMALL_STATE(3184)] = 91131, + [SMALL_STATE(3185)] = 91148, + [SMALL_STATE(3186)] = 91163, + [SMALL_STATE(3187)] = 91178, + [SMALL_STATE(3188)] = 91195, + [SMALL_STATE(3189)] = 91212, + [SMALL_STATE(3190)] = 91227, + [SMALL_STATE(3191)] = 91244, + [SMALL_STATE(3192)] = 91261, + [SMALL_STATE(3193)] = 91278, + [SMALL_STATE(3194)] = 91295, + [SMALL_STATE(3195)] = 91312, + [SMALL_STATE(3196)] = 91329, + [SMALL_STATE(3197)] = 91344, + [SMALL_STATE(3198)] = 91361, + [SMALL_STATE(3199)] = 91376, + [SMALL_STATE(3200)] = 91391, + [SMALL_STATE(3201)] = 91408, + [SMALL_STATE(3202)] = 91425, + [SMALL_STATE(3203)] = 91442, + [SMALL_STATE(3204)] = 91459, + [SMALL_STATE(3205)] = 91476, + [SMALL_STATE(3206)] = 91493, + [SMALL_STATE(3207)] = 91510, + [SMALL_STATE(3208)] = 91527, + [SMALL_STATE(3209)] = 91544, + [SMALL_STATE(3210)] = 91559, + [SMALL_STATE(3211)] = 91574, + [SMALL_STATE(3212)] = 91591, + [SMALL_STATE(3213)] = 91606, + [SMALL_STATE(3214)] = 91623, + [SMALL_STATE(3215)] = 91640, + [SMALL_STATE(3216)] = 91657, + [SMALL_STATE(3217)] = 91674, + [SMALL_STATE(3218)] = 91691, + [SMALL_STATE(3219)] = 91706, + [SMALL_STATE(3220)] = 91723, + [SMALL_STATE(3221)] = 91740, + [SMALL_STATE(3222)] = 91757, + [SMALL_STATE(3223)] = 91772, + [SMALL_STATE(3224)] = 91789, + [SMALL_STATE(3225)] = 91804, + [SMALL_STATE(3226)] = 91821, + [SMALL_STATE(3227)] = 91836, + [SMALL_STATE(3228)] = 91853, + [SMALL_STATE(3229)] = 91870, + [SMALL_STATE(3230)] = 91887, + [SMALL_STATE(3231)] = 91902, + [SMALL_STATE(3232)] = 91919, + [SMALL_STATE(3233)] = 91936, + [SMALL_STATE(3234)] = 91953, + [SMALL_STATE(3235)] = 91970, + [SMALL_STATE(3236)] = 91987, + [SMALL_STATE(3237)] = 92002, + [SMALL_STATE(3238)] = 92019, + [SMALL_STATE(3239)] = 92036, + [SMALL_STATE(3240)] = 92053, + [SMALL_STATE(3241)] = 92070, + [SMALL_STATE(3242)] = 92087, + [SMALL_STATE(3243)] = 92104, + [SMALL_STATE(3244)] = 92121, + [SMALL_STATE(3245)] = 92138, + [SMALL_STATE(3246)] = 92155, + [SMALL_STATE(3247)] = 92172, + [SMALL_STATE(3248)] = 92189, + [SMALL_STATE(3249)] = 92206, + [SMALL_STATE(3250)] = 92223, + [SMALL_STATE(3251)] = 92240, + [SMALL_STATE(3252)] = 92257, + [SMALL_STATE(3253)] = 92274, + [SMALL_STATE(3254)] = 92291, + [SMALL_STATE(3255)] = 92308, + [SMALL_STATE(3256)] = 92325, + [SMALL_STATE(3257)] = 92340, + [SMALL_STATE(3258)] = 92355, + [SMALL_STATE(3259)] = 92370, + [SMALL_STATE(3260)] = 92387, + [SMALL_STATE(3261)] = 92404, + [SMALL_STATE(3262)] = 92419, + [SMALL_STATE(3263)] = 92434, + [SMALL_STATE(3264)] = 92451, + [SMALL_STATE(3265)] = 92468, + [SMALL_STATE(3266)] = 92485, + [SMALL_STATE(3267)] = 92502, + [SMALL_STATE(3268)] = 92519, + [SMALL_STATE(3269)] = 92534, + [SMALL_STATE(3270)] = 92551, + [SMALL_STATE(3271)] = 92568, + [SMALL_STATE(3272)] = 92583, + [SMALL_STATE(3273)] = 92600, + [SMALL_STATE(3274)] = 92617, + [SMALL_STATE(3275)] = 92634, + [SMALL_STATE(3276)] = 92649, + [SMALL_STATE(3277)] = 92666, + [SMALL_STATE(3278)] = 92683, + [SMALL_STATE(3279)] = 92700, + [SMALL_STATE(3280)] = 92717, + [SMALL_STATE(3281)] = 92734, + [SMALL_STATE(3282)] = 92751, + [SMALL_STATE(3283)] = 92766, + [SMALL_STATE(3284)] = 92783, + [SMALL_STATE(3285)] = 92800, + [SMALL_STATE(3286)] = 92817, + [SMALL_STATE(3287)] = 92834, + [SMALL_STATE(3288)] = 92851, + [SMALL_STATE(3289)] = 92868, + [SMALL_STATE(3290)] = 92885, + [SMALL_STATE(3291)] = 92902, + [SMALL_STATE(3292)] = 92919, + [SMALL_STATE(3293)] = 92936, + [SMALL_STATE(3294)] = 92953, + [SMALL_STATE(3295)] = 92970, + [SMALL_STATE(3296)] = 92987, + [SMALL_STATE(3297)] = 93004, + [SMALL_STATE(3298)] = 93021, + [SMALL_STATE(3299)] = 93038, + [SMALL_STATE(3300)] = 93055, + [SMALL_STATE(3301)] = 93072, + [SMALL_STATE(3302)] = 93089, + [SMALL_STATE(3303)] = 93106, + [SMALL_STATE(3304)] = 93121, + [SMALL_STATE(3305)] = 93138, + [SMALL_STATE(3306)] = 93155, + [SMALL_STATE(3307)] = 93172, + [SMALL_STATE(3308)] = 93187, + [SMALL_STATE(3309)] = 93202, + [SMALL_STATE(3310)] = 93219, + [SMALL_STATE(3311)] = 93236, + [SMALL_STATE(3312)] = 93253, + [SMALL_STATE(3313)] = 93270, + [SMALL_STATE(3314)] = 93287, + [SMALL_STATE(3315)] = 93304, + [SMALL_STATE(3316)] = 93321, + [SMALL_STATE(3317)] = 93336, + [SMALL_STATE(3318)] = 93353, + [SMALL_STATE(3319)] = 93370, + [SMALL_STATE(3320)] = 93387, + [SMALL_STATE(3321)] = 93404, + [SMALL_STATE(3322)] = 93421, + [SMALL_STATE(3323)] = 93438, + [SMALL_STATE(3324)] = 93453, + [SMALL_STATE(3325)] = 93470, + [SMALL_STATE(3326)] = 93487, + [SMALL_STATE(3327)] = 93502, + [SMALL_STATE(3328)] = 93519, + [SMALL_STATE(3329)] = 93536, + [SMALL_STATE(3330)] = 93553, + [SMALL_STATE(3331)] = 93570, + [SMALL_STATE(3332)] = 93587, + [SMALL_STATE(3333)] = 93604, + [SMALL_STATE(3334)] = 93619, + [SMALL_STATE(3335)] = 93636, + [SMALL_STATE(3336)] = 93653, + [SMALL_STATE(3337)] = 93670, + [SMALL_STATE(3338)] = 93687, + [SMALL_STATE(3339)] = 93704, + [SMALL_STATE(3340)] = 93721, + [SMALL_STATE(3341)] = 93738, + [SMALL_STATE(3342)] = 93755, + [SMALL_STATE(3343)] = 93772, + [SMALL_STATE(3344)] = 93789, + [SMALL_STATE(3345)] = 93806, + [SMALL_STATE(3346)] = 93823, + [SMALL_STATE(3347)] = 93840, + [SMALL_STATE(3348)] = 93857, + [SMALL_STATE(3349)] = 93874, + [SMALL_STATE(3350)] = 93891, + [SMALL_STATE(3351)] = 93908, + [SMALL_STATE(3352)] = 93925, + [SMALL_STATE(3353)] = 93942, + [SMALL_STATE(3354)] = 93959, + [SMALL_STATE(3355)] = 93976, + [SMALL_STATE(3356)] = 93993, + [SMALL_STATE(3357)] = 94010, + [SMALL_STATE(3358)] = 94027, + [SMALL_STATE(3359)] = 94044, + [SMALL_STATE(3360)] = 94061, + [SMALL_STATE(3361)] = 94078, + [SMALL_STATE(3362)] = 94095, + [SMALL_STATE(3363)] = 94112, + [SMALL_STATE(3364)] = 94129, + [SMALL_STATE(3365)] = 94146, + [SMALL_STATE(3366)] = 94163, + [SMALL_STATE(3367)] = 94180, + [SMALL_STATE(3368)] = 94197, + [SMALL_STATE(3369)] = 94214, + [SMALL_STATE(3370)] = 94231, + [SMALL_STATE(3371)] = 94248, + [SMALL_STATE(3372)] = 94265, + [SMALL_STATE(3373)] = 94280, + [SMALL_STATE(3374)] = 94295, + [SMALL_STATE(3375)] = 94312, + [SMALL_STATE(3376)] = 94327, + [SMALL_STATE(3377)] = 94342, + [SMALL_STATE(3378)] = 94359, + [SMALL_STATE(3379)] = 94374, + [SMALL_STATE(3380)] = 94391, + [SMALL_STATE(3381)] = 94408, + [SMALL_STATE(3382)] = 94423, + [SMALL_STATE(3383)] = 94440, + [SMALL_STATE(3384)] = 94455, + [SMALL_STATE(3385)] = 94472, + [SMALL_STATE(3386)] = 94489, + [SMALL_STATE(3387)] = 94506, + [SMALL_STATE(3388)] = 94523, + [SMALL_STATE(3389)] = 94540, + [SMALL_STATE(3390)] = 94557, + [SMALL_STATE(3391)] = 94574, + [SMALL_STATE(3392)] = 94589, + [SMALL_STATE(3393)] = 94604, + [SMALL_STATE(3394)] = 94621, + [SMALL_STATE(3395)] = 94638, + [SMALL_STATE(3396)] = 94655, + [SMALL_STATE(3397)] = 94672, + [SMALL_STATE(3398)] = 94689, + [SMALL_STATE(3399)] = 94706, + [SMALL_STATE(3400)] = 94721, + [SMALL_STATE(3401)] = 94738, + [SMALL_STATE(3402)] = 94755, + [SMALL_STATE(3403)] = 94772, + [SMALL_STATE(3404)] = 94787, + [SMALL_STATE(3405)] = 94804, + [SMALL_STATE(3406)] = 94821, + [SMALL_STATE(3407)] = 94838, + [SMALL_STATE(3408)] = 94855, + [SMALL_STATE(3409)] = 94872, + [SMALL_STATE(3410)] = 94889, + [SMALL_STATE(3411)] = 94906, + [SMALL_STATE(3412)] = 94923, + [SMALL_STATE(3413)] = 94940, + [SMALL_STATE(3414)] = 94955, + [SMALL_STATE(3415)] = 94970, + [SMALL_STATE(3416)] = 94985, + [SMALL_STATE(3417)] = 95002, + [SMALL_STATE(3418)] = 95019, + [SMALL_STATE(3419)] = 95036, + [SMALL_STATE(3420)] = 95051, + [SMALL_STATE(3421)] = 95068, + [SMALL_STATE(3422)] = 95085, + [SMALL_STATE(3423)] = 95102, + [SMALL_STATE(3424)] = 95119, + [SMALL_STATE(3425)] = 95134, + [SMALL_STATE(3426)] = 95151, + [SMALL_STATE(3427)] = 95168, + [SMALL_STATE(3428)] = 95183, + [SMALL_STATE(3429)] = 95200, + [SMALL_STATE(3430)] = 95217, + [SMALL_STATE(3431)] = 95234, + [SMALL_STATE(3432)] = 95251, + [SMALL_STATE(3433)] = 95268, + [SMALL_STATE(3434)] = 95283, + [SMALL_STATE(3435)] = 95300, + [SMALL_STATE(3436)] = 95317, + [SMALL_STATE(3437)] = 95334, + [SMALL_STATE(3438)] = 95351, + [SMALL_STATE(3439)] = 95368, + [SMALL_STATE(3440)] = 95385, + [SMALL_STATE(3441)] = 95402, + [SMALL_STATE(3442)] = 95419, + [SMALL_STATE(3443)] = 95436, + [SMALL_STATE(3444)] = 95453, + [SMALL_STATE(3445)] = 95470, + [SMALL_STATE(3446)] = 95487, + [SMALL_STATE(3447)] = 95504, + [SMALL_STATE(3448)] = 95521, + [SMALL_STATE(3449)] = 95536, + [SMALL_STATE(3450)] = 95553, + [SMALL_STATE(3451)] = 95570, + [SMALL_STATE(3452)] = 95587, + [SMALL_STATE(3453)] = 95604, + [SMALL_STATE(3454)] = 95619, + [SMALL_STATE(3455)] = 95636, + [SMALL_STATE(3456)] = 95653, + [SMALL_STATE(3457)] = 95670, + [SMALL_STATE(3458)] = 95685, + [SMALL_STATE(3459)] = 95700, + [SMALL_STATE(3460)] = 95715, + [SMALL_STATE(3461)] = 95732, + [SMALL_STATE(3462)] = 95746, + [SMALL_STATE(3463)] = 95760, + [SMALL_STATE(3464)] = 95774, + [SMALL_STATE(3465)] = 95788, + [SMALL_STATE(3466)] = 95802, + [SMALL_STATE(3467)] = 95816, + [SMALL_STATE(3468)] = 95830, + [SMALL_STATE(3469)] = 95844, + [SMALL_STATE(3470)] = 95858, + [SMALL_STATE(3471)] = 95872, + [SMALL_STATE(3472)] = 95886, + [SMALL_STATE(3473)] = 95900, + [SMALL_STATE(3474)] = 95914, + [SMALL_STATE(3475)] = 95928, + [SMALL_STATE(3476)] = 95942, + [SMALL_STATE(3477)] = 95956, + [SMALL_STATE(3478)] = 95970, + [SMALL_STATE(3479)] = 95984, + [SMALL_STATE(3480)] = 95998, + [SMALL_STATE(3481)] = 96012, + [SMALL_STATE(3482)] = 96026, + [SMALL_STATE(3483)] = 96040, + [SMALL_STATE(3484)] = 96054, + [SMALL_STATE(3485)] = 96068, + [SMALL_STATE(3486)] = 96082, + [SMALL_STATE(3487)] = 96096, + [SMALL_STATE(3488)] = 96110, + [SMALL_STATE(3489)] = 96124, + [SMALL_STATE(3490)] = 96138, + [SMALL_STATE(3491)] = 96152, + [SMALL_STATE(3492)] = 96166, + [SMALL_STATE(3493)] = 96180, + [SMALL_STATE(3494)] = 96194, + [SMALL_STATE(3495)] = 96208, + [SMALL_STATE(3496)] = 96222, + [SMALL_STATE(3497)] = 96236, + [SMALL_STATE(3498)] = 96250, + [SMALL_STATE(3499)] = 96264, + [SMALL_STATE(3500)] = 96278, + [SMALL_STATE(3501)] = 96292, + [SMALL_STATE(3502)] = 96306, + [SMALL_STATE(3503)] = 96320, + [SMALL_STATE(3504)] = 96334, + [SMALL_STATE(3505)] = 96348, + [SMALL_STATE(3506)] = 96362, + [SMALL_STATE(3507)] = 96376, + [SMALL_STATE(3508)] = 96390, + [SMALL_STATE(3509)] = 96404, + [SMALL_STATE(3510)] = 96418, + [SMALL_STATE(3511)] = 96432, + [SMALL_STATE(3512)] = 96446, + [SMALL_STATE(3513)] = 96460, + [SMALL_STATE(3514)] = 96474, + [SMALL_STATE(3515)] = 96488, + [SMALL_STATE(3516)] = 96502, + [SMALL_STATE(3517)] = 96516, + [SMALL_STATE(3518)] = 96530, + [SMALL_STATE(3519)] = 96544, + [SMALL_STATE(3520)] = 96558, + [SMALL_STATE(3521)] = 96572, + [SMALL_STATE(3522)] = 96586, + [SMALL_STATE(3523)] = 96600, + [SMALL_STATE(3524)] = 96614, + [SMALL_STATE(3525)] = 96628, + [SMALL_STATE(3526)] = 96642, + [SMALL_STATE(3527)] = 96656, + [SMALL_STATE(3528)] = 96670, + [SMALL_STATE(3529)] = 96684, + [SMALL_STATE(3530)] = 96698, + [SMALL_STATE(3531)] = 96712, + [SMALL_STATE(3532)] = 96726, + [SMALL_STATE(3533)] = 96740, + [SMALL_STATE(3534)] = 96754, + [SMALL_STATE(3535)] = 96768, + [SMALL_STATE(3536)] = 96782, + [SMALL_STATE(3537)] = 96796, + [SMALL_STATE(3538)] = 96810, + [SMALL_STATE(3539)] = 96824, + [SMALL_STATE(3540)] = 96838, + [SMALL_STATE(3541)] = 96852, + [SMALL_STATE(3542)] = 96866, + [SMALL_STATE(3543)] = 96880, + [SMALL_STATE(3544)] = 96894, + [SMALL_STATE(3545)] = 96908, + [SMALL_STATE(3546)] = 96922, + [SMALL_STATE(3547)] = 96936, + [SMALL_STATE(3548)] = 96950, + [SMALL_STATE(3549)] = 96964, + [SMALL_STATE(3550)] = 96978, + [SMALL_STATE(3551)] = 96992, + [SMALL_STATE(3552)] = 97006, + [SMALL_STATE(3553)] = 97020, + [SMALL_STATE(3554)] = 97034, + [SMALL_STATE(3555)] = 97048, + [SMALL_STATE(3556)] = 97062, + [SMALL_STATE(3557)] = 97076, + [SMALL_STATE(3558)] = 97090, + [SMALL_STATE(3559)] = 97104, + [SMALL_STATE(3560)] = 97118, + [SMALL_STATE(3561)] = 97132, + [SMALL_STATE(3562)] = 97146, + [SMALL_STATE(3563)] = 97160, + [SMALL_STATE(3564)] = 97174, + [SMALL_STATE(3565)] = 97188, + [SMALL_STATE(3566)] = 97202, + [SMALL_STATE(3567)] = 97216, + [SMALL_STATE(3568)] = 97230, + [SMALL_STATE(3569)] = 97244, + [SMALL_STATE(3570)] = 97258, + [SMALL_STATE(3571)] = 97272, + [SMALL_STATE(3572)] = 97286, + [SMALL_STATE(3573)] = 97300, + [SMALL_STATE(3574)] = 97314, + [SMALL_STATE(3575)] = 97328, + [SMALL_STATE(3576)] = 97342, + [SMALL_STATE(3577)] = 97356, + [SMALL_STATE(3578)] = 97370, + [SMALL_STATE(3579)] = 97384, + [SMALL_STATE(3580)] = 97398, + [SMALL_STATE(3581)] = 97412, + [SMALL_STATE(3582)] = 97426, + [SMALL_STATE(3583)] = 97440, + [SMALL_STATE(3584)] = 97454, + [SMALL_STATE(3585)] = 97468, + [SMALL_STATE(3586)] = 97482, + [SMALL_STATE(3587)] = 97496, + [SMALL_STATE(3588)] = 97510, + [SMALL_STATE(3589)] = 97524, + [SMALL_STATE(3590)] = 97538, + [SMALL_STATE(3591)] = 97552, + [SMALL_STATE(3592)] = 97566, + [SMALL_STATE(3593)] = 97580, + [SMALL_STATE(3594)] = 97594, + [SMALL_STATE(3595)] = 97608, + [SMALL_STATE(3596)] = 97622, + [SMALL_STATE(3597)] = 97636, + [SMALL_STATE(3598)] = 97650, + [SMALL_STATE(3599)] = 97664, + [SMALL_STATE(3600)] = 97678, + [SMALL_STATE(3601)] = 97692, + [SMALL_STATE(3602)] = 97706, + [SMALL_STATE(3603)] = 97720, + [SMALL_STATE(3604)] = 97734, + [SMALL_STATE(3605)] = 97748, + [SMALL_STATE(3606)] = 97762, + [SMALL_STATE(3607)] = 97776, + [SMALL_STATE(3608)] = 97790, + [SMALL_STATE(3609)] = 97804, + [SMALL_STATE(3610)] = 97818, + [SMALL_STATE(3611)] = 97832, + [SMALL_STATE(3612)] = 97846, + [SMALL_STATE(3613)] = 97860, + [SMALL_STATE(3614)] = 97874, + [SMALL_STATE(3615)] = 97888, + [SMALL_STATE(3616)] = 97902, + [SMALL_STATE(3617)] = 97916, + [SMALL_STATE(3618)] = 97930, + [SMALL_STATE(3619)] = 97944, + [SMALL_STATE(3620)] = 97958, + [SMALL_STATE(3621)] = 97972, + [SMALL_STATE(3622)] = 97986, + [SMALL_STATE(3623)] = 98000, + [SMALL_STATE(3624)] = 98014, + [SMALL_STATE(3625)] = 98028, + [SMALL_STATE(3626)] = 98042, + [SMALL_STATE(3627)] = 98056, + [SMALL_STATE(3628)] = 98070, + [SMALL_STATE(3629)] = 98084, + [SMALL_STATE(3630)] = 98098, + [SMALL_STATE(3631)] = 98112, + [SMALL_STATE(3632)] = 98126, + [SMALL_STATE(3633)] = 98140, + [SMALL_STATE(3634)] = 98154, + [SMALL_STATE(3635)] = 98168, + [SMALL_STATE(3636)] = 98182, + [SMALL_STATE(3637)] = 98196, + [SMALL_STATE(3638)] = 98210, + [SMALL_STATE(3639)] = 98224, + [SMALL_STATE(3640)] = 98238, + [SMALL_STATE(3641)] = 98252, + [SMALL_STATE(3642)] = 98266, + [SMALL_STATE(3643)] = 98280, + [SMALL_STATE(3644)] = 98294, + [SMALL_STATE(3645)] = 98308, + [SMALL_STATE(3646)] = 98322, + [SMALL_STATE(3647)] = 98336, + [SMALL_STATE(3648)] = 98350, + [SMALL_STATE(3649)] = 98364, + [SMALL_STATE(3650)] = 98378, + [SMALL_STATE(3651)] = 98392, + [SMALL_STATE(3652)] = 98406, + [SMALL_STATE(3653)] = 98420, + [SMALL_STATE(3654)] = 98434, + [SMALL_STATE(3655)] = 98448, + [SMALL_STATE(3656)] = 98462, + [SMALL_STATE(3657)] = 98476, + [SMALL_STATE(3658)] = 98490, + [SMALL_STATE(3659)] = 98504, + [SMALL_STATE(3660)] = 98518, + [SMALL_STATE(3661)] = 98532, + [SMALL_STATE(3662)] = 98546, + [SMALL_STATE(3663)] = 98560, + [SMALL_STATE(3664)] = 98574, + [SMALL_STATE(3665)] = 98588, + [SMALL_STATE(3666)] = 98602, + [SMALL_STATE(3667)] = 98616, + [SMALL_STATE(3668)] = 98630, + [SMALL_STATE(3669)] = 98644, + [SMALL_STATE(3670)] = 98658, + [SMALL_STATE(3671)] = 98672, + [SMALL_STATE(3672)] = 98686, + [SMALL_STATE(3673)] = 98700, + [SMALL_STATE(3674)] = 98714, + [SMALL_STATE(3675)] = 98728, + [SMALL_STATE(3676)] = 98742, + [SMALL_STATE(3677)] = 98756, + [SMALL_STATE(3678)] = 98770, + [SMALL_STATE(3679)] = 98784, + [SMALL_STATE(3680)] = 98798, + [SMALL_STATE(3681)] = 98812, + [SMALL_STATE(3682)] = 98826, + [SMALL_STATE(3683)] = 98840, + [SMALL_STATE(3684)] = 98854, + [SMALL_STATE(3685)] = 98868, + [SMALL_STATE(3686)] = 98882, + [SMALL_STATE(3687)] = 98896, + [SMALL_STATE(3688)] = 98910, + [SMALL_STATE(3689)] = 98924, + [SMALL_STATE(3690)] = 98938, + [SMALL_STATE(3691)] = 98952, + [SMALL_STATE(3692)] = 98966, + [SMALL_STATE(3693)] = 98980, + [SMALL_STATE(3694)] = 98994, + [SMALL_STATE(3695)] = 99008, + [SMALL_STATE(3696)] = 99022, + [SMALL_STATE(3697)] = 99036, + [SMALL_STATE(3698)] = 99050, + [SMALL_STATE(3699)] = 99064, + [SMALL_STATE(3700)] = 99078, + [SMALL_STATE(3701)] = 99092, + [SMALL_STATE(3702)] = 99106, + [SMALL_STATE(3703)] = 99120, + [SMALL_STATE(3704)] = 99134, + [SMALL_STATE(3705)] = 99148, + [SMALL_STATE(3706)] = 99162, + [SMALL_STATE(3707)] = 99176, + [SMALL_STATE(3708)] = 99190, + [SMALL_STATE(3709)] = 99204, + [SMALL_STATE(3710)] = 99218, + [SMALL_STATE(3711)] = 99232, + [SMALL_STATE(3712)] = 99246, + [SMALL_STATE(3713)] = 99260, + [SMALL_STATE(3714)] = 99274, + [SMALL_STATE(3715)] = 99288, + [SMALL_STATE(3716)] = 99302, + [SMALL_STATE(3717)] = 99316, + [SMALL_STATE(3718)] = 99330, + [SMALL_STATE(3719)] = 99344, + [SMALL_STATE(3720)] = 99358, + [SMALL_STATE(3721)] = 99372, + [SMALL_STATE(3722)] = 99386, + [SMALL_STATE(3723)] = 99400, + [SMALL_STATE(3724)] = 99414, + [SMALL_STATE(3725)] = 99428, + [SMALL_STATE(3726)] = 99442, + [SMALL_STATE(3727)] = 99456, + [SMALL_STATE(3728)] = 99470, + [SMALL_STATE(3729)] = 99484, + [SMALL_STATE(3730)] = 99498, + [SMALL_STATE(3731)] = 99512, + [SMALL_STATE(3732)] = 99526, + [SMALL_STATE(3733)] = 99540, + [SMALL_STATE(3734)] = 99554, + [SMALL_STATE(3735)] = 99568, + [SMALL_STATE(3736)] = 99582, + [SMALL_STATE(3737)] = 99596, + [SMALL_STATE(3738)] = 99610, + [SMALL_STATE(3739)] = 99624, + [SMALL_STATE(3740)] = 99638, + [SMALL_STATE(3741)] = 99652, + [SMALL_STATE(3742)] = 99666, + [SMALL_STATE(3743)] = 99680, + [SMALL_STATE(3744)] = 99694, + [SMALL_STATE(3745)] = 99708, + [SMALL_STATE(3746)] = 99722, + [SMALL_STATE(3747)] = 99736, + [SMALL_STATE(3748)] = 99750, + [SMALL_STATE(3749)] = 99764, + [SMALL_STATE(3750)] = 99778, + [SMALL_STATE(3751)] = 99792, + [SMALL_STATE(3752)] = 99806, + [SMALL_STATE(3753)] = 99820, + [SMALL_STATE(3754)] = 99834, + [SMALL_STATE(3755)] = 99848, + [SMALL_STATE(3756)] = 99862, + [SMALL_STATE(3757)] = 99876, + [SMALL_STATE(3758)] = 99890, + [SMALL_STATE(3759)] = 99904, + [SMALL_STATE(3760)] = 99918, + [SMALL_STATE(3761)] = 99932, + [SMALL_STATE(3762)] = 99946, + [SMALL_STATE(3763)] = 99960, + [SMALL_STATE(3764)] = 99974, + [SMALL_STATE(3765)] = 99988, + [SMALL_STATE(3766)] = 100002, + [SMALL_STATE(3767)] = 100016, + [SMALL_STATE(3768)] = 100030, + [SMALL_STATE(3769)] = 100044, + [SMALL_STATE(3770)] = 100058, + [SMALL_STATE(3771)] = 100072, + [SMALL_STATE(3772)] = 100086, + [SMALL_STATE(3773)] = 100100, + [SMALL_STATE(3774)] = 100114, + [SMALL_STATE(3775)] = 100128, + [SMALL_STATE(3776)] = 100142, + [SMALL_STATE(3777)] = 100156, + [SMALL_STATE(3778)] = 100170, + [SMALL_STATE(3779)] = 100184, + [SMALL_STATE(3780)] = 100198, + [SMALL_STATE(3781)] = 100202, + [SMALL_STATE(3782)] = 100206, + [SMALL_STATE(3783)] = 100210, + [SMALL_STATE(3784)] = 100214, + [SMALL_STATE(3785)] = 100218, + [SMALL_STATE(3786)] = 100222, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(877), [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3208), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3383), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3764), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(152), [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3535), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(158), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(183), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(139), [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(290), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(249), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(337), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1548), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(224), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(814), [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(877), [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3375), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3592), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2574), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2603), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1409), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1508), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3208), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3467), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2546), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2622), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1417), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1526), [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(843), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1060), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1063), [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2598), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(365), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3001), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2842), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2613), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(355), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3139), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2633), [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3160), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2599), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1491), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2731), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1424), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3460), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3543), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3385), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2618), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1495), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2605), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1547), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3476), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1547), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3641), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), @@ -198845,1116 +199008,1116 @@ static const TSParseActionEntry ts_parse_actions[] = { [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3208), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2613), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2944), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2709), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3161), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2828), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3412), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3413), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3696), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), @@ -199964,2062 +200127,2064 @@ static const TSParseActionEntry ts_parse_actions[] = { [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2789), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3246), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3437), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2768), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2025), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(257), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(791), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2030), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(255), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2936), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3217), + [6227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2269), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2274), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), + [6511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(792), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7234] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -202074,16 +202239,16 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [6] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [8] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, [9] = { [ts_external_token_raw_string_literal_content] = true,